forcing 320x240 res

This commit is contained in:
Vincent-FK 2021-04-02 17:09:50 +02:00
parent 0731283a9f
commit aa471f7f59

View File

@ -206,8 +206,12 @@ int plat_sdl_init(void)
info = SDL_GetVideoInfo(); info = SDL_GetVideoInfo();
if (info != NULL) { if (info != NULL) {
fs_w = info->current_w; /*fs_w = info->current_w;
fs_h = info->current_h; fs_h = info->current_h;*/
// Force 320x240 on FunKey S
fs_w = 320;
fs_h = 240;
printf("plat_sdl: using %dx%d as fullscreen resolution\n", fs_w, fs_h); printf("plat_sdl: using %dx%d as fullscreen resolution\n", fs_w, fs_h);
} }