fix(input): align touch axes with panel

This commit is contained in:
2026-08-01 19:58:30 -04:00
parent 0bd953d596
commit dbabb03413
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -25,8 +25,8 @@ static int l_input_getRawTouch(lua_State* L) {
return 1;
}
TS_Point point = owner->touch.getPoint();
lua_pushinteger(L, point.x);
lua_pushinteger(L, point.y);
lua_pushinteger(L, point.x);
return 2;
}