diff options
author | bunnei <bunneidev@gmail.com> | 2015-03-07 18:26:28 -0500 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2015-03-07 18:26:28 -0500 |
commit | 25633b431d78bb031349f275f202e10207acd62b (patch) | |
tree | 6d3451d26c6c307ba10c70ea86955acf72e2e640 /src/common/emu_window.cpp | |
parent | 06bf4715810489548a9a3b5e9274dfc78bc3fc4d (diff) |
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 1082ae26df..6459d2f32e 100644 --- a/src/common/emu_window.cpp +++ b/src/common/emu_window.cpp @@ -17,7 +17,7 @@ void EmuWindow::KeyReleased(KeyMap::HostDeviceKey key) { Service::HID::PadButtonRelease(mapped_key); } -EmuWindow::FramebufferLayout EmuWindow::FramebufferLayout::DefaultScreenLayout(int width, int height) { +EmuWindow::FramebufferLayout EmuWindow::FramebufferLayout::DefaultScreenLayout(unsigned width, unsigned height) { ASSERT(width > 0); ASSERT(height > 0); |