2
3
mirror of https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git synced 2025-07-14 10:37:41 -04:00

Fix the bugs I introduced by accidentally merging my own pull request.

This commit is contained in:
2011-08-27 16:24:54 -04:00
parent 109e389178
commit da1ca0d91c
2 changed files with 5 additions and 11 deletions

View File

@ -131,15 +131,6 @@ class pfConsoleInputInterface : public plInputInterface
{
if( fConsole->fMode )
{
// If this is a character input, do not accept the codes (yes, the code) that will toggle
// the console--that's handled elsewhere...
if ( keyMsg->GetKeyChar() )
{
const plKeyBinding* keyb = fControlMap->FindBinding( B_SET_CONSOLE_MODE );
if ( keyb->GetKey1().fKey == keyMsg->GetKeyCode() )
return true;
}
fConsole->IHandleKey( keyMsg );
return true;
}