aboutsummaryrefslogtreecommitdiff
path: root/engines/dm/dm.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/dm/dm.cpp')
-rw-r--r--engines/dm/dm.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/engines/dm/dm.cpp b/engines/dm/dm.cpp
index dbf7a9577a..194bfa2a8a 100644
--- a/engines/dm/dm.cpp
+++ b/engines/dm/dm.cpp
@@ -168,6 +168,7 @@ DMEngine::DMEngine(OSystem *syst) : Engine(syst), _console(nullptr) {
_g310_disabledMovementTicks = 0;
_g313_gameTime = 0;
_g353_stringBuildBuffer[0] = '\0';
+ _g318_waitForInputMaxVerticalBlankCount = 0;
debug("DMEngine::DMEngine");
@@ -320,11 +321,12 @@ Common::Error DMEngine::run() {
}
void DMEngine::f2_gameloop() {
- warning(false, "DUMMY CODE SETTING PARTY POS AND DIRECTION");
+ warning(false, "DUMMY CODE: SETTING PARTY POS AND DIRECTION");
_dungeonMan->_g306_partyMapX = 10;
_dungeonMan->_g307_partyMapY = 4;
_dungeonMan->_g308_partyDir = kDirNorth;
+ _g318_waitForInputMaxVerticalBlankCount = 10;
while (true) {
if (_g327_newPartyMapIndex != kM1_mapIndexNone) {
T0002002: