Update some internal files to use SDL_WindowFlags

This commit is contained in:
Susko3 2024-03-03 20:30:57 +01:00 committed by Sam Lantinga
parent ce44eff3d2
commit 641b911d38
16 changed files with 44 additions and 44 deletions

View file

@ -92,7 +92,7 @@ struct SwsContextContainer
static const char *SWS_CONTEXT_CONTAINER_PROPERTY = "SWS_CONTEXT_CONTAINER";
static int done;
static SDL_bool CreateWindowAndRenderer(Uint32 window_flags, const char *driver)
static SDL_bool CreateWindowAndRenderer(SDL_WindowFlags window_flags, const char *driver)
{
SDL_PropertiesID props;
SDL_RendererInfo info;
@ -1066,7 +1066,7 @@ int main(int argc, char *argv[])
int i;
int result;
int return_code = -1;
Uint32 window_flags;
SDL_WindowFlags window_flags;
SDL_bool flushing = SDL_FALSE;
SDL_bool decoded = SDL_FALSE;
SDLTest_CommonState *state;