mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-22 01:39:57 +00:00
turn down verbosity
svn-id: r13345
This commit is contained in:
parent
5121f61175
commit
791696a9a3
@ -1655,7 +1655,7 @@ void ScummEngine::parseEvents() {
|
||||
}
|
||||
|
||||
if (_keyPressed >= 512)
|
||||
warning("_keyPressed > 512 (%d)", _keyPressed);
|
||||
debugC(DEBUG_GENERAL, "_keyPressed > 512 (%d)", _keyPressed);
|
||||
else
|
||||
_keyDownMap[_keyPressed] = true;
|
||||
break;
|
||||
@ -1664,7 +1664,7 @@ void ScummEngine::parseEvents() {
|
||||
// FIXME: for some reason OSystem::KBD_ALT is set sometimes
|
||||
// possible to a bug in sdl-common.cpp
|
||||
if (event.kbd.ascii >= 512)
|
||||
warning("keyPressed > 512 (%d)", event.kbd.ascii);
|
||||
debugC(DEBUG_GENERAL, "keyPressed > 512 (%d)", event.kbd.ascii);
|
||||
else
|
||||
_keyDownMap[event.kbd.ascii] = false;
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user