mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-03 15:21:40 +00:00
Do not repeat keys for WinCE (problems with GAPI and virtual keyboard)
svn-id: r5251
This commit is contained in:
parent
3c2a409b11
commit
c585fe7a37
@ -197,7 +197,14 @@ bool ListWidget::handleKeyDown(char key, int modifiers)
|
||||
_scrollBar->draw();
|
||||
}
|
||||
|
||||
#ifndef _WIN32_WCE
|
||||
|
||||
// not done on WinCE because keyboard is emulated and
|
||||
// keyup is not generated
|
||||
|
||||
_currentKeyDown = key;
|
||||
|
||||
#endif
|
||||
|
||||
return handled;
|
||||
}
|
||||
|
@ -134,10 +134,14 @@ void NewGui::runLoop()
|
||||
case OSystem::EVENT_KEYDOWN:
|
||||
activeDialog->handleKeyDown((byte)event.kbd.ascii, event.kbd.flags);
|
||||
|
||||
#ifndef _WIN32_WCE
|
||||
// init continuous event stream
|
||||
// not done on WinCE because keyboard is emulated and
|
||||
// keyup is not generated
|
||||
_currentKeyDown = event.kbd.ascii;
|
||||
_currentKeyDownFlags = event.kbd.flags;
|
||||
_keyRepeatTime = time + kKeyRepeatInitialDelay;
|
||||
#endif
|
||||
break;
|
||||
case OSystem::EVENT_KEYUP:
|
||||
activeDialog->handleKeyUp((byte)event.kbd.ascii, event.kbd.flags);
|
||||
|
Loading…
x
Reference in New Issue
Block a user