SDL_video.c: move os2 video before offscreen.

as offscreen is enabled in CMakeLists.txt, we get a blanks window
otherwise.

From a patch by Silvan Scherrer, at Bitwiseworks' fork.
(cherry picked from commit 66d5ad19f0260f42426a66fe664b6e98291faa37)
This commit is contained in:
Ozkan Sezer 2023-08-02 14:05:55 +03:00
parent ebf2c49b50
commit 0deed07b3e

View file

@ -127,16 +127,16 @@ static VideoBootStrap *bootstrap[] = {
#if SDL_VIDEO_DRIVER_QNX #if SDL_VIDEO_DRIVER_QNX
&QNX_bootstrap, &QNX_bootstrap,
#endif #endif
#if SDL_VIDEO_DRIVER_OS2
&OS2DIVE_bootstrap,
&OS2VMAN_bootstrap,
#endif
#if SDL_VIDEO_DRIVER_OFFSCREEN #if SDL_VIDEO_DRIVER_OFFSCREEN
&OFFSCREEN_bootstrap, &OFFSCREEN_bootstrap,
#endif #endif
#if SDL_VIDEO_DRIVER_NGAGE #if SDL_VIDEO_DRIVER_NGAGE
&NGAGE_bootstrap, &NGAGE_bootstrap,
#endif #endif
#if SDL_VIDEO_DRIVER_OS2
&OS2DIVE_bootstrap,
&OS2VMAN_bootstrap,
#endif
#if SDL_VIDEO_DRIVER_DUMMY #if SDL_VIDEO_DRIVER_DUMMY
&DUMMY_bootstrap, &DUMMY_bootstrap,
#if SDL_INPUT_LINUXEV #if SDL_INPUT_LINUXEV