Prepend key modifier enum values with 'SDL_'

This commit is contained in:
Frank Praznik
2022-12-23 20:52:46 -05:00
committed by Sam Lantinga
parent b7ac14f2bd
commit abdfa809db
23 changed files with 280 additions and 199 deletions

View File

@@ -356,7 +356,7 @@ static SDL_bool ShowingFront()
}
}
}
if ((SDL_GetModState() & KMOD_SHIFT) != 0) {
if ((SDL_GetModState() & SDL_KMOD_SHIFT) != 0) {
showing_front = SDL_FALSE;
}
return showing_front;