diff --git a/src/common/emu_window.h b/src/common/emu_window.h
index 2be7517bc1f578c80f7b73f699ded7a38246576a..c8e2de04ad27fafcd4e0e021e97212399f3c69e9 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);
     }