diff options
author | Bendegúz Nagy | 2016-06-19 00:49:23 +0200 |
---|---|---|
committer | Bendegúz Nagy | 2016-08-26 23:02:22 +0200 |
commit | ceed621a51366be53bd5f189e275bf631328dd24 (patch) | |
tree | e7dd1675e0bbcd5fe62bdbe0bb9955bf4e54ef92 | |
parent | 749ffcc3f0e7866a8edc8d9591fe70d152fc157a (diff) | |
download | scummvm-rg350-ceed621a51366be53bd5f189e275bf631328dd24.tar.gz scummvm-rg350-ceed621a51366be53bd5f189e275bf631328dd24.tar.bz2 scummvm-rg350-ceed621a51366be53bd5f189e275bf631328dd24.zip |
DM: Fix missing else in DMEngine::startGame()
-rw-r--r-- | engines/dm/dm.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/dm/dm.cpp b/engines/dm/dm.cpp index 2a20b86410..4408eb4993 100644 --- a/engines/dm/dm.cpp +++ b/engines/dm/dm.cpp @@ -113,7 +113,7 @@ void DMEngine::startGame() { if (!_dungeonMan->_messages._newGame) { warning("TODO: loading game"); - } { + } else { _displayMan->_useByteBoxCoordinates = false; warning("TODO: clear screen"); } |