diff options
-rw-r--r-- | engines/dreamweb/monitor.cpp | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/engines/dreamweb/monitor.cpp b/engines/dreamweb/monitor.cpp index b07fbf54fc..2ac8ddc70a 100644 --- a/engines/dreamweb/monitor.cpp +++ b/engines/dreamweb/monitor.cpp @@ -148,7 +148,7 @@ bool DreamWebEngine::execCommand() { static const char *const comlistDE[] = { "ENDE", - "HILFE", + "HILF", "LISTE", "LIES", "ZUGRIFF", @@ -165,6 +165,16 @@ bool DreamWebEngine::execCommand() { "CHIAVI", NULL }; + + static const char *const comlistES[] = { + "SALIR", + "AYUDA", + "LISTA", + "LEER", + "IDENTIFICARSE", + "CLAVES", + NULL + }; if (_inputLine[0] == 0) { // No input @@ -186,6 +196,8 @@ bool DreamWebEngine::execCommand() { cmd = findCommand(comlistIT); break; case Common::ES_ESP: + cmd = findCommand(comlistES); + break; default: break; } |