set current screen orientation on startup so we don't reset back to normal if we started with a rotated display

This commit is contained in:
Brad Parker 2019-05-09 11:11:40 -04:00
parent 10ef7dd561
commit c39765a5b7

View File

@ -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;
}