1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-20 21:43:06 +01:00

Get the game working

Mostly just needed to resolve screen size which is now retrieved via ui context.
This commit is contained in:
Ted John
2017-03-26 21:42:07 +01:00
committed by Gymnasiast
parent 7163973bd2
commit bd9839ff50
47 changed files with 208 additions and 153 deletions

View File

@@ -15,6 +15,7 @@
#pragma endregion
#include "../core/Console.hpp"
#include "../Context.h"
#include "../network/network.h"
#include "../OpenRCT2.h"
#include "../scenario/ScenarioRepository.h"
@@ -161,7 +162,7 @@ extern "C"
window_title_exit_open();
window_title_options_open();
window_title_logo_open();
window_resize_gui(gScreenWidth, gScreenHeight);
window_resize_gui(context_get_width(), context_get_height());
gTitleHideVersionInfo = false;
}