aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStrangerke2016-06-19 00:24:19 +0200
committerBendegúz Nagy2016-08-26 23:02:22 +0200
commitc97a4560b21ba73537e59cbcc9c18d8943992231 (patch)
treecc68c883e519a5a09996e007c30693f3c1f0695b
parent7dd90c3daf2d9955ba232c0ed70d1f4b90ba81e9 (diff)
downloadscummvm-rg350-c97a4560b21ba73537e59cbcc9c18d8943992231.tar.gz
scummvm-rg350-c97a4560b21ba73537e59cbcc9c18d8943992231.tar.bz2
scummvm-rg350-c97a4560b21ba73537e59cbcc9c18d8943992231.zip
DM: Change some comments to warnings
-rw-r--r--engines/dm/dm.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/engines/dm/dm.cpp b/engines/dm/dm.cpp
index 1466c807e8..2a20b86410 100644
--- a/engines/dm/dm.cpp
+++ b/engines/dm/dm.cpp
@@ -80,7 +80,7 @@ void DMEngine::initializeGame() {
_eventMan->initMouse();
while (_loadsaveMan->loadgame() != kLoadgameSuccess) {
- // MISSING CODE: F0441_STARTEND_ProcessEntrance
+ warning("TODO: F0441_STARTEND_ProcessEntrance");
}
_displayMan->loadFloorSet(kFloorSetStone);
@@ -112,13 +112,13 @@ void DMEngine::startGame() {
processNewPartyMap(_dungeonMan->_currMap._currPartyMapIndex);
if (!_dungeonMan->_messages._newGame) {
- // MISSING CODE: loading game
+ warning("TODO: loading game");
} {
_displayMan->_useByteBoxCoordinates = false;
- // MISSING CODE: clear screen
+ warning("TODO: clear screen");
}
- // MISSING CODE: build copper
+ warning("TODO: build copper");
_menuMan->drawMovementArrows();
_championMan->resetDataToStartGame();
_gameTimeTicking = true;
@@ -147,7 +147,7 @@ Common::Error DMEngine::run() {
initializeGame(); // @ F0463_START_InitializeGame_CPSADEF
while (true) {
gameloop();
- // MISSING CODE: F0444_STARTEND_Endgame(G0303_B_PartyDead);
+ warning("TODO: F0444_STARTEND_Endgame(G0303_B_PartyDead);");
}
return Common::kNoError;