From ceed621a51366be53bd5f189e275bf631328dd24 Mon Sep 17 00:00:00 2001 From: Bendegúz Nagy Date: Sun, 19 Jun 2016 00:49:23 +0200 Subject: DM: Fix missing else in DMEngine::startGame() --- engines/dm/dm.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"); } -- cgit v1.2.3