[UI] Add window dimension cvars
This commit is contained in:
parent
b01f6cd7ea
commit
c385981d04
|
@ -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 {
|
||||
|
||||
|
@ -284,7 +287,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();
|
||||
|
||||
|
|
Loading…
Reference in New Issue