Introduce a better fix for the Mac OS X backspace problem by adding the workaround to default-events.cpp.

svn-id: r43441
This commit is contained in:
Matthew Hoops 2009-08-16 14:04:54 +00:00
parent a718e608f4
commit ce30a513ac
3 changed files with 6 additions and 11 deletions

View file

@ -499,10 +499,6 @@ void AGOSEngine::delay(uint amount) {
}
_keyPressed = event.kbd;
// Make sure backspace works right (this fixes a small issue on OS X)
if (_keyPressed.keycode == Common::KEYCODE_BACKSPACE)
_keyPressed.ascii = Common::KEYCODE_BACKSPACE;
break;
case Common::EVENT_MOUSEMOVE:
break;