diff options
author | Zaneo <gareth.higgins@ryerson.ca> | 2015-04-14 06:06:44 +0200 |
---|---|---|
committer | Zaneo <gareth.higgins@ryerson.ca> | 2015-05-02 05:52:33 +0200 |
commit | b8328593fe3d60ecb066ad0959d8c1e8dfb4d3c5 (patch) | |
tree | fdeec9f5d356b84f21c92ddb4b469aedb11e93db /src/common/emu_window.h | |
parent | Merge pull request #715 from purpasmart96/configmem_typo_fix (diff) | |
download | yuzu-b8328593fe3d60ecb066ad0959d8c1e8dfb4d3c5.tar yuzu-b8328593fe3d60ecb066ad0959d8c1e8dfb4d3c5.tar.gz yuzu-b8328593fe3d60ecb066ad0959d8c1e8dfb4d3c5.tar.bz2 yuzu-b8328593fe3d60ecb066ad0959d8c1e8dfb4d3c5.tar.lz yuzu-b8328593fe3d60ecb066ad0959d8c1e8dfb4d3c5.tar.xz yuzu-b8328593fe3d60ecb066ad0959d8c1e8dfb4d3c5.tar.zst yuzu-b8328593fe3d60ecb066ad0959d8c1e8dfb4d3c5.zip |
Diffstat (limited to 'src/common/emu_window.h')
-rw-r--r-- | src/common/emu_window.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/common/emu_window.h b/src/common/emu_window.h index c8e2de04a..e0fc12a48 100644 --- a/src/common/emu_window.h +++ b/src/common/emu_window.h @@ -206,5 +206,10 @@ private: u16 touch_x; ///< Touchpad X-position in native 3DS pixel coordinates (0-320) u16 touch_y; ///< Touchpad Y-position in native 3DS pixel coordinates (0-240) + /** + * Clip the provided coordinates to be inside the touchscreen area. + */ + std::tuple<unsigned,unsigned> ClipToTouchScreen(unsigned new_x, unsigned new_y); + Service::HID::PadState pad_state; }; |