Skip to content

Commit

Permalink
SDL_video.c: move ngage video before offscreen.
Browse files Browse the repository at this point in the history
Reference issue: #8069.
(cherry picked from commit e2e87a5)
  • Loading branch information
sezero committed Aug 2, 2023
1 parent 0deed07 commit 6a787b8
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/video/SDL_video.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
*/

#include "../SDL_internal.h"

/* The high-level video driver subsystem */
Expand Down Expand Up @@ -131,12 +132,12 @@ static VideoBootStrap *bootstrap[] = {
&OS2DIVE_bootstrap,
&OS2VMAN_bootstrap,
#endif
#if SDL_VIDEO_DRIVER_OFFSCREEN
&OFFSCREEN_bootstrap,
#endif
#if SDL_VIDEO_DRIVER_NGAGE
&NGAGE_bootstrap,
#endif
#if SDL_VIDEO_DRIVER_OFFSCREEN
&OFFSCREEN_bootstrap,
#endif
#if SDL_VIDEO_DRIVER_DUMMY
&DUMMY_bootstrap,
#if SDL_INPUT_LINUXEV
Expand Down

0 comments on commit 6a787b8

Please sign in to comment.