diff options
author | Paul Gilbert | 2017-01-01 04:22:13 -0500 |
---|---|---|
committer | Paul Gilbert | 2017-01-01 04:22:13 -0500 |
commit | 2154ddd4e85c878c22835f0b4e92b5a05a56890c (patch) | |
tree | fd6252deac46bf29c67f13b9375de4390b8cf837 /engines | |
parent | bc039f6b10dc8203f007c943815473d20b5c672b (diff) | |
download | scummvm-rg350-2154ddd4e85c878c22835f0b4e92b5a05a56890c.tar.gz scummvm-rg350-2154ddd4e85c878c22835f0b4e92b5a05a56890c.tar.bz2 scummvm-rg350-2154ddd4e85c878c22835f0b4e92b5a05a56890c.zip |
TITANIC: Add 'scummvm' in as a valid MissiveOMat login username
Because I've misspelled Leovinus' name way too many times during testing
Diffstat (limited to 'engines')
-rw-r--r-- | engines/titanic/game/missiveomat.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/titanic/game/missiveomat.cpp b/engines/titanic/game/missiveomat.cpp index 8f491cadf6..56293c13a9 100644 --- a/engines/titanic/game/missiveomat.cpp +++ b/engines/titanic/game/missiveomat.cpp @@ -142,7 +142,8 @@ bool CMissiveOMat::KeyCharMsg(CKeyCharMsg *msg) { // Check whether a valid username and password has been entered bool validFlag = false; - if (_username == "leovinus" && _password == "other") { + if ((_username == "leovinus" && _password == "other") || + (_username == "scummvm")) { validFlag = true; _account = LEOVINUS; } else if (_username == "scraliontis" && _password == "this") { |