aboutsummaryrefslogtreecommitdiff
path: root/engines/dm/dm.cpp
diff options
context:
space:
mode:
authorBendegúz Nagy2016-07-02 00:27:05 +0200
committerBendegúz Nagy2016-08-26 23:02:22 +0200
commite2300bd04c5aebe5736a5d0a431a9b85f53a9d17 (patch)
tree5e309b46235e7e215f45bab501265bf45991d442 /engines/dm/dm.cpp
parent5f25c6aae28a3553183ee3c2e8af7b66e9622bf6 (diff)
downloadscummvm-rg350-e2300bd04c5aebe5736a5d0a431a9b85f53a9d17.tar.gz
scummvm-rg350-e2300bd04c5aebe5736a5d0a431a9b85f53a9d17.tar.bz2
scummvm-rg350-e2300bd04c5aebe5736a5d0a431a9b85f53a9d17.zip
DM: Massive renaming in gfx.h
Diffstat (limited to 'engines/dm/dm.cpp')
-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 66a11250e8..be8da8b4b6 100644
--- a/engines/dm/dm.cpp
+++ b/engines/dm/dm.cpp
@@ -144,7 +144,7 @@ DMEngine::~DMEngine() {
void DMEngine::initializeGame() {
_displayMan->loadGraphics();
// DUMMY CODE: next line
- _displayMan->loadPalette(gPalCredits);
+ _displayMan->loadPalette(g19_PalCredits);
_eventMan->initMouse();
@@ -152,8 +152,8 @@ void DMEngine::initializeGame() {
warning("TODO: F0441_STARTEND_ProcessEntrance");
}
- _displayMan->loadFloorSet(kFloorSetStone);
- _displayMan->loadWallSet(kWallSetStone);
+ _displayMan->loadFloorSet(k0_FloorSetStone);
+ _displayMan->loadWallSet(k0_WallSetStone);
_objectMan->loadObjectNames();
startGame();
@@ -184,7 +184,7 @@ void DMEngine::startGame() {
if (!_dungeonMan->_messages._newGame) {
warning("TODO: loading game");
} else {
- _displayMan->_useByteBoxCoordinates = false;
+ _displayMan->_g578_useByteBoxCoordinates = false;
warning("TODO: clear screen");
}
@@ -253,7 +253,7 @@ void DMEngine::gameloop() {
if (!_inventoryMan->_inventoryChampionOrdinal && !_championMan->_partyIsSleeping) {
Box box(0, 224, 0, 126);
- _displayMan->clearScreenBox(kColorBlack, box, gDungeonViewport); // dummy code
+ _displayMan->clearScreenBox(k0_ColorBlack, box, gDungeonViewport); // dummy code
_displayMan->drawDungeon(_dungeonMan->_currMap._partyDir, _dungeonMan->_currMap._partyPosX, _dungeonMan->_currMap._partyPosY);
}
// DUMMY CODE: next line