diff --git a/gfx/video_crt_switch.c b/gfx/video_crt_switch.c index 754776ca09..00e2757ce1 100644 --- a/gfx/video_crt_switch.c +++ b/gfx/video_crt_switch.c @@ -43,7 +43,7 @@ static void crt_check_first_run(void) if (!first_run) return; - video_display_server_get_current_resolution(&orig_width, &orig_height); + first_run = false; } @@ -178,8 +178,5 @@ void crt_video_restore(void) if (first_run) return; - video_display_server_switch_resolution(orig_width, orig_height, - 0, 60); - - first_run = true; + first_run = true; }