mirror of
https://github.com/trezor/trezor-firmware.git
synced 2025-01-03 03:50:58 +00:00
TOUCH_END is uint(4) now
This commit is contained in:
parent
7bf92f118b
commit
2e280ca358
@ -58,7 +58,7 @@ uint32_t trezorui_poll_sdl_event(void)
|
|||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case SDL_MOUSEBUTTONUP:
|
case SDL_MOUSEBUTTONUP:
|
||||||
return (0x00 << 24) | (0x03 << 16) | (x << 8) | y; // touch_end
|
return (0x00 << 24) | (0x04 << 16) | (x << 8) | y; // touch_end
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
Loading…
Reference in New Issue
Block a user