mirror of
https://github.com/libsdl-org/SDL.git
synced 2025-09-05 19:08:12 +00:00
Made the cursor list check a compile time assert instead of a runtime one
This will catch this being out of date more quickly in the future
This commit is contained in:
@@ -43,6 +43,8 @@ static const char *cursorNames[] = {
|
|||||||
"window bottom left",
|
"window bottom left",
|
||||||
"window left"
|
"window left"
|
||||||
};
|
};
|
||||||
|
SDL_COMPILE_TIME_ASSERT(cursorNames, SDL_arraysize(cursorNames) == SDL_NUM_SYSTEM_CURSORS);
|
||||||
|
|
||||||
static int system_cursor = -1;
|
static int system_cursor = -1;
|
||||||
static SDL_Cursor *cursor = NULL;
|
static SDL_Cursor *cursor = NULL;
|
||||||
static SDL_bool relative_mode = SDL_FALSE;
|
static SDL_bool relative_mode = SDL_FALSE;
|
||||||
@@ -266,8 +268,6 @@ int main(int argc, char *argv[])
|
|||||||
/* Enable standard application logging */
|
/* Enable standard application logging */
|
||||||
SDL_LogSetPriority(SDL_LOG_CATEGORY_APPLICATION, SDL_LOG_PRIORITY_INFO);
|
SDL_LogSetPriority(SDL_LOG_CATEGORY_APPLICATION, SDL_LOG_PRIORITY_INFO);
|
||||||
|
|
||||||
SDL_assert(SDL_arraysize(cursorNames) == SDL_NUM_SYSTEM_CURSORS);
|
|
||||||
|
|
||||||
if (!SDLTest_CommonDefaultArgs(state, argc, argv) || !SDLTest_CommonInit(state)) {
|
if (!SDLTest_CommonDefaultArgs(state, argc, argv) || !SDLTest_CommonInit(state)) {
|
||||||
SDLTest_CommonQuit(state);
|
SDLTest_CommonQuit(state);
|
||||||
return 1;
|
return 1;
|
||||||
|
Reference in New Issue
Block a user