summaryrefslogtreecommitdiffstats
path: root/src/common/emu_window.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2015-03-08 00:26:28 +0100
committerbunnei <bunneidev@gmail.com>2015-03-08 00:26:28 +0100
commit25633b431d78bb031349f275f202e10207acd62b (patch)
tree6d3451d26c6c307ba10c70ea86955acf72e2e640 /src/common/emu_window.cpp
parentMerge pull request #636 from bunnei/refactor-screen-win (diff)
downloadyuzu-25633b431d78bb031349f275f202e10207acd62b.tar
yuzu-25633b431d78bb031349f275f202e10207acd62b.tar.gz
yuzu-25633b431d78bb031349f275f202e10207acd62b.tar.bz2
yuzu-25633b431d78bb031349f275f202e10207acd62b.tar.lz
yuzu-25633b431d78bb031349f275f202e10207acd62b.tar.xz
yuzu-25633b431d78bb031349f275f202e10207acd62b.tar.zst
yuzu-25633b431d78bb031349f275f202e10207acd62b.zip
Diffstat (limited to '')
-rw-r--r--src/common/emu_window.cpp2
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) {
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);