diff options
author | Subv <subv2112@gmail.com> | 2015-03-14 21:01:02 +0100 |
---|---|---|
committer | Subv <subv2112@gmail.com> | 2015-03-14 21:01:02 +0100 |
commit | c0d1a91017d528c600d14897e2b4a38c6b14dcd5 (patch) | |
tree | 870f7cf85e088294388f63f544826c992d4583c0 /src/common/emu_window.h | |
parent | Merge pull request #642 from bunnei/touchpad (diff) | |
download | yuzu-c0d1a91017d528c600d14897e2b4a38c6b14dcd5.tar yuzu-c0d1a91017d528c600d14897e2b4a38c6b14dcd5.tar.gz yuzu-c0d1a91017d528c600d14897e2b4a38c6b14dcd5.tar.bz2 yuzu-c0d1a91017d528c600d14897e2b4a38c6b14dcd5.tar.lz yuzu-c0d1a91017d528c600d14897e2b4a38c6b14dcd5.tar.xz yuzu-c0d1a91017d528c600d14897e2b4a38c6b14dcd5.tar.zst yuzu-c0d1a91017d528c600d14897e2b4a38c6b14dcd5.zip |
Diffstat (limited to 'src/common/emu_window.h')
-rw-r--r-- | src/common/emu_window.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/emu_window.h b/src/common/emu_window.h index 2be7517bc..c8e2de04a 100644 --- a/src/common/emu_window.h +++ b/src/common/emu_window.h @@ -110,7 +110,7 @@ public: * @return std::tuple of (x, y, pressed) where `x` and `y` are the touch coordinates and * `pressed` is true if the touch screen is currently being pressed */ - const std::tuple<u16, u16, bool>& GetTouchState() const { + const std::tuple<u16, u16, bool> GetTouchState() const { return std::make_tuple(touch_x, touch_y, touch_pressed); } |