diff options
| author | 2020-05-15 16:22:27 -0400 | |
|---|---|---|
| committer | 2020-05-15 22:22:27 +0200 | |
| commit | b73f678ee82a6f3fae36ed39dfc4cfc27c64a871 (patch) | |
| tree | c87d2dc03d7ef150c49f694af33b1ad1c6f1ea7f /src/core/frontend/emu_window.cpp | |
| parent | Merge pull request #3927 from jroweboy/fix-bug (diff) | |
| download | yuzu-b73f678ee82a6f3fae36ed39dfc4cfc27c64a871.tar.gz yuzu-b73f678ee82a6f3fae36ed39dfc4cfc27c64a871.tar.xz yuzu-b73f678ee82a6f3fae36ed39dfc4cfc27c64a871.zip | |
frontend: Set minimum window size to 640x360 instead of 1280x720 (#3413)
Diffstat (limited to 'src/core/frontend/emu_window.cpp')
| -rw-r--r-- | src/core/frontend/emu_window.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/frontend/emu_window.cpp b/src/core/frontend/emu_window.cpp index eda466a5d..9a081fbd4 100644 --- a/src/core/frontend/emu_window.cpp +++ b/src/core/frontend/emu_window.cpp | |||
| @@ -46,7 +46,7 @@ private: | |||
| 46 | EmuWindow::EmuWindow() { | 46 | EmuWindow::EmuWindow() { |
| 47 | // TODO: Find a better place to set this. | 47 | // TODO: Find a better place to set this. |
| 48 | config.min_client_area_size = | 48 | config.min_client_area_size = |
| 49 | std::make_pair(Layout::ScreenUndocked::Width, Layout::ScreenUndocked::Height); | 49 | std::make_pair(Layout::MinimumSize::Width, Layout::MinimumSize::Height); |
| 50 | active_config = config; | 50 | active_config = config; |
| 51 | touch_state = std::make_shared<TouchState>(); | 51 | touch_state = std::make_shared<TouchState>(); |
| 52 | Input::RegisterFactory<Input::TouchDevice>("emu_window", touch_state); | 52 | Input::RegisterFactory<Input::TouchDevice>("emu_window", touch_state); |