diff options
-rw-r--r-- | engines/hopkins/computer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/hopkins/computer.cpp b/engines/hopkins/computer.cpp index f51e1be494..467153e4dd 100644 --- a/engines/hopkins/computer.cpp +++ b/engines/hopkins/computer.cpp @@ -864,7 +864,7 @@ void ComputerManager::getScoreName() { displayHiscoreLine(ptr, 9 * strPos + 140, 78, 1); char curChar = toupper(_vm->_events->waitKeyPress()); - if ((curChar < '0') && (curChar > 'Z')) + if ((curChar < '0') || (curChar > 'Z')) curChar = ' '; if ((curChar > '9') && (curChar < 'A')) curChar = ' '; |