diff options
author | neonloop | 2021-05-07 20:09:32 +0000 |
---|---|---|
committer | neonloop | 2021-05-07 20:09:32 +0000 |
commit | 186c5c7f58b1b6b24f1f07990d278a10abe2add9 (patch) | |
tree | a5b46984a9bb2e23b760f530e09ab667fa120db6 /src | |
parent | 7f6002caba3f0a6749820c2772161caf55b8d267 (diff) | |
download | uqm-186c5c7f58b1b6b24f1f07990d278a10abe2add9.tar.gz uqm-186c5c7f58b1b6b24f1f07990d278a10abe2add9.tar.bz2 uqm-186c5c7f58b1b6b24f1f07990d278a10abe2add9.zip |
Initial trimui s support
Diffstat (limited to 'src')
-rw-r--r-- | src/libs/graphics/sdl/pure.c | 2 | ||||
-rw-r--r-- | src/uqm.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/libs/graphics/sdl/pure.c b/src/libs/graphics/sdl/pure.c index df4a329..cfefb41 100644 --- a/src/libs/graphics/sdl/pure.c +++ b/src/libs/graphics/sdl/pure.c @@ -141,7 +141,7 @@ TFB_Pure_ConfigureVideo (int driver, int flags, int width, int height, int toggl /* We'll ask for a 32bpp frame, but it doesn't really matter, because we've set SDL_ANYFORMAT */ SDL_Video = SDL_SetVideoMode (ScreenWidthActual, ScreenHeightActual, - 32, videomode_flags); + 16, videomode_flags); if (SDL_Video == NULL) { @@ -241,7 +241,7 @@ main (int argc, char *argv[]) /* .graphicsBackend = */ NULL, INIT_CONFIG_OPTION( opengl, false ), - INIT_CONFIG_OPTION2( resolution, 640, 480 ), + INIT_CONFIG_OPTION2( resolution, 320, 240 ), INIT_CONFIG_OPTION( fullscreen, false ), INIT_CONFIG_OPTION( scanlines, false ), INIT_CONFIG_OPTION( scaler, 0 ), |