From c39765a5b7e95926caa72423a9cf538ad7906be6 Mon Sep 17 00:00:00 2001 From: Brad Parker Date: Thu, 9 May 2019 11:11:40 -0400 Subject: [PATCH] set current screen orientation on startup so we don't reset back to normal if we started with a rotated display --- gfx/video_display_server.c | 1 + 1 file changed, 1 insertion(+) diff --git a/gfx/video_display_server.c b/gfx/video_display_server.c index e496751100..d1a849e911 100644 --- a/gfx/video_display_server.c +++ b/gfx/video_display_server.c @@ -65,6 +65,7 @@ void* video_display_server_init(void) current_display_server->ident); initial_screen_orientation = video_display_server_get_screen_orientation(); + current_screen_orientation = initial_screen_orientation; return current_display_server_data; }