summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2015-03-08 00:33:00 +0100
committerbunnei <bunneidev@gmail.com>2015-03-08 00:33:00 +0100
commit89495fc888a6bba998311f5fef2d65320b49d4d8 (patch)
tree6d3451d26c6c307ba10c70ea86955acf72e2e640 /src
parentMerge pull request #636 from bunnei/refactor-screen-win (diff)
parentFixed EmuWindow typo (fixes OSX build) (diff)
downloadyuzu-89495fc888a6bba998311f5fef2d65320b49d4d8.tar
yuzu-89495fc888a6bba998311f5fef2d65320b49d4d8.tar.gz
yuzu-89495fc888a6bba998311f5fef2d65320b49d4d8.tar.bz2
yuzu-89495fc888a6bba998311f5fef2d65320b49d4d8.tar.lz
yuzu-89495fc888a6bba998311f5fef2d65320b49d4d8.tar.xz
yuzu-89495fc888a6bba998311f5fef2d65320b49d4d8.tar.zst
yuzu-89495fc888a6bba998311f5fef2d65320b49d4d8.zip
Diffstat (limited to 'src')
-rw-r--r--src/common/emu_window.cpp2
-rw-r--r--src/common/emu_window.h2
2 files changed, 2 insertions, 2 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) {
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);
diff --git a/src/common/emu_window.h b/src/common/emu_window.h
index b6862030e..f6099fdb6 100644
--- a/src/common/emu_window.h
+++ b/src/common/emu_window.h
@@ -48,7 +48,7 @@ public:
* @param height Window framebuffer height in pixels
* @return Newly created FramebufferLayout object with default screen regions initialized
*/
- static FramebufferLayout DefaultScreenLayout(int width, int height);
+ static FramebufferLayout DefaultScreenLayout(unsigned width, unsigned height);
unsigned width;
unsigned height;