mirror of
https://github.com/mtheall/exb0rker.git
synced 2025-06-19 03:05:31 -04:00
Fix typo
This commit is contained in:
parent
acf4c6f288
commit
17bc45cb7e
@ -297,7 +297,7 @@ void MainApp::processSubScreen(touchPosition &touch, int down, int repeat) {
|
||||
}
|
||||
|
||||
for(int i = ICON_COPY; cmd == COMMAND_NONE && i <= ICON_DELETE; i++) {
|
||||
if(touch.px > i*24 + 8 && touch.px < (i+1)*24 &&
|
||||
if(touch.px > (i+2)*24 + 8 && touch.px < (i+3)*24 &&
|
||||
touch.py > 128 && touch.py < 128+16) {
|
||||
cmd = (command_t)(i - (int)ICON_COPY + (int)COMMAND_COPY);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user