Fix windows touch using wrong axis for normalisation

Regressed with 9302d7732d
main
Susko3 2023-12-26 17:51:43 +01:00 committed by Sam Lantinga
parent a28ac29aa0
commit bbdd41f287
1 changed files with 1 additions and 1 deletions

View File

@ -1230,7 +1230,7 @@ WIN_WindowProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
for (i = 0; i < num_inputs; ++i) {
PTOUCHINPUT input = &inputs[i];
const int w = (rect.right - rect.left);
const int h = (rect.right - rect.left);
const int h = (rect.bottom - rect.top);
const SDL_TouchID touchId = (SDL_TouchID)((size_t)input->hSource);