[UI] Add window dimension cvars

This commit is contained in:
Cancerous 2019-08-27 15:53:49 -04:00 committed by illusion98
parent 28ea438dce
commit acc1930a01
1 changed files with 4 additions and 1 deletions

View File

@ -29,6 +29,9 @@
DECLARE_bool(debug);
DEFINE_int32(window_height, 720, "Window height", "UI");
DEFINE_int32(window_width, 1280, "Window width", "UI");
namespace xe {
namespace app {
@ -291,7 +294,7 @@ bool EmulatorWindow::Initialize() {
window_->set_main_menu(std::move(main_menu));
window_->Resize(1280, 720);
window_->Resize(cvars::window_width, cvars::window_height);
window_->DisableMainMenu();