TOUCH_END is uint(4) now

This commit is contained in:
Jan Pochyla 2016-05-12 16:15:47 +02:00 committed by Pavol Rusnak
parent 7bf92f118b
commit 2e280ca358
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D
1 changed files with 1 additions and 1 deletions

View File

@ -58,7 +58,7 @@ uint32_t trezorui_poll_sdl_event(void)
}
break;
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;