diff options
| author | 2015-03-07 18:33:00 -0500 | |
|---|---|---|
| committer | 2015-03-07 18:33:00 -0500 | |
| commit | 89495fc888a6bba998311f5fef2d65320b49d4d8 (patch) | |
| tree | 6d3451d26c6c307ba10c70ea86955acf72e2e640 /src/common/emu_window.cpp | |
| parent | Merge pull request #636 from bunnei/refactor-screen-win (diff) | |
| parent | Fixed EmuWindow typo (fixes OSX build) (diff) | |
| download | yuzu-89495fc888a6bba998311f5fef2d65320b49d4d8.tar.gz yuzu-89495fc888a6bba998311f5fef2d65320b49d4d8.tar.xz yuzu-89495fc888a6bba998311f5fef2d65320b49d4d8.zip | |
Merge pull request #638 from bunnei/osx-fix
Fixed EmuWindow typo (fixes OSX build)
Diffstat (limited to 'src/common/emu_window.cpp')
| -rw-r--r-- | src/common/emu_window.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/emu_window.cpp b/src/common/emu_window.cpp index 1082ae26d..6459d2f32 100644 --- a/src/common/emu_window.cpp +++ b/src/common/emu_window.cpp | |||
| @@ -17,7 +17,7 @@ void EmuWindow::KeyReleased(KeyMap::HostDeviceKey key) { | |||
| 17 | Service::HID::PadButtonRelease(mapped_key); | 17 | Service::HID::PadButtonRelease(mapped_key); |
| 18 | } | 18 | } |
| 19 | 19 | ||
| 20 | EmuWindow::FramebufferLayout EmuWindow::FramebufferLayout::DefaultScreenLayout(int width, int height) { | 20 | EmuWindow::FramebufferLayout EmuWindow::FramebufferLayout::DefaultScreenLayout(unsigned width, unsigned height) { |
| 21 | ASSERT(width > 0); | 21 | ASSERT(width > 0); |
| 22 | ASSERT(height > 0); | 22 | ASSERT(height > 0); |
| 23 | 23 | ||