diff options
Diffstat (limited to 'src/core/frontend/emu_window.cpp')
| -rw-r--r-- | src/core/frontend/emu_window.cpp | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/core/frontend/emu_window.cpp b/src/core/frontend/emu_window.cpp index 5fdb3a7e8..4f7d54a33 100644 --- a/src/core/frontend/emu_window.cpp +++ b/src/core/frontend/emu_window.cpp | |||
| @@ -5,10 +5,10 @@ | |||
| 5 | #include <algorithm> | 5 | #include <algorithm> |
| 6 | #include <cmath> | 6 | #include <cmath> |
| 7 | #include "common/assert.h" | 7 | #include "common/assert.h" |
| 8 | #include "core/3ds.h" | ||
| 8 | #include "core/core.h" | 9 | #include "core/core.h" |
| 9 | #include "core/frontend/emu_window.h" | 10 | #include "core/frontend/emu_window.h" |
| 10 | #include "core/settings.h" | 11 | #include "core/settings.h" |
| 11 | #include "video_core/video_core.h" | ||
| 12 | 12 | ||
| 13 | /** | 13 | /** |
| 14 | * Check if the given x/y coordinates are within the touchpad specified by the framebuffer layout | 14 | * Check if the given x/y coordinates are within the touchpad specified by the framebuffer layout |
| @@ -38,11 +38,9 @@ void EmuWindow::TouchPressed(unsigned framebuffer_x, unsigned framebuffer_y) { | |||
| 38 | if (!IsWithinTouchscreen(framebuffer_layout, framebuffer_x, framebuffer_y)) | 38 | if (!IsWithinTouchscreen(framebuffer_layout, framebuffer_x, framebuffer_y)) |
| 39 | return; | 39 | return; |
| 40 | 40 | ||
| 41 | touch_x = VideoCore::kScreenBottomWidth * | 41 | touch_x = Core::kScreenBottomWidth * (framebuffer_x - framebuffer_layout.bottom_screen.left) / |
| 42 | (framebuffer_x - framebuffer_layout.bottom_screen.left) / | ||
| 43 | (framebuffer_layout.bottom_screen.right - framebuffer_layout.bottom_screen.left); | 42 | (framebuffer_layout.bottom_screen.right - framebuffer_layout.bottom_screen.left); |
| 44 | touch_y = VideoCore::kScreenBottomHeight * | 43 | touch_y = Core::kScreenBottomHeight * (framebuffer_y - framebuffer_layout.bottom_screen.top) / |
| 45 | (framebuffer_y - framebuffer_layout.bottom_screen.top) / | ||
| 46 | (framebuffer_layout.bottom_screen.bottom - framebuffer_layout.bottom_screen.top); | 44 | (framebuffer_layout.bottom_screen.bottom - framebuffer_layout.bottom_screen.top); |
| 47 | 45 | ||
| 48 | touch_pressed = true; | 46 | touch_pressed = true; |