diff --git a/docs/README-migration.md b/docs/README-migration.md index 0d45145322..0715181abc 100644 --- a/docs/README-migration.md +++ b/docs/README-migration.md @@ -2134,7 +2134,9 @@ SDL_CreateWindow() has been simplified and no longer takes a window position. Yo SDL_SetNumberProperty(props, SDL_PROP_WINDOW_CREATE_Y_NUMBER, y); SDL_SetNumberProperty(props, SDL_PROP_WINDOW_CREATE_WIDTH_NUMBER, width); SDL_SetNumberProperty(props, SDL_PROP_WINDOW_CREATE_HEIGHT_NUMBER, height); - SDL_SetNumberProperty(props, "flags", flags); + // For window flags you should use separate window creation properties, + // but for easier migration from SDL2 you can use the following: + SDL_SetNumberProperty(props, SDL_PROP_WINDOW_CREATE_FLAGS_NUMBER, flags); pWindow = SDL_CreateWindowWithProperties(props); SDL_DestroyProperties(props); if (window) {