Shorten enable timer for OK / Cancel dialog.

This commit is contained in:
Steve 2016-06-03 13:57:07 +01:00
parent 28577a3754
commit 6d64cefce8
1 changed files with 1 additions and 1 deletions

View File

@ -80,7 +80,7 @@ void showOKCancelDialog(void (*okCallback)(void), void (*cancelCallback)(void),
okCancelOK->action = okCallback;
okCancelCancel->action = cancelCallback;
enableTimer = FPS;
enableTimer = FPS / 4;
ok->enabled = okCancelOK->enabled = okCancelCancel->enabled = 0;
}