it's actually 1920x941

This commit is contained in:
counter185 2024-08-28 14:15:01 +02:00
parent 15fc267f0d
commit 89bdd3bba2
1 changed files with 1 additions and 1 deletions

View File

@ -140,7 +140,7 @@ void GameController::SetTouchpadState(int touchIndex, bool touchDown, float x, f
state.touchpad[touchIndex].state = touchDown;
state.touchpad[touchIndex].x = static_cast<u16>(x * 1920);
state.touchpad[touchIndex].y = static_cast<u16>(y * 1080);
state.touchpad[touchIndex].y = static_cast<u16>(y * 941);
AddState(state);
}