aboutsummaryrefslogtreecommitdiff
path: root/engines/hdb/hdb.cpp
diff options
context:
space:
mode:
authorEugene Sandulenko2019-07-02 00:49:56 +0200
committerEugene Sandulenko2019-09-03 17:17:07 +0200
commitd55370ac82768b2f733aab4e723bda08cb36bb44 (patch)
tree54099200ad04edd938807a8efd6ed00ffd120fa9 /engines/hdb/hdb.cpp
parent362cb060f3a70bf21218c17c148a84abbd685989 (diff)
downloadscummvm-rg350-d55370ac82768b2f733aab4e723bda08cb36bb44.tar.gz
scummvm-rg350-d55370ac82768b2f733aab4e723bda08cb36bb44.tar.bz2
scummvm-rg350-d55370ac82768b2f733aab4e723bda08cb36bb44.zip
HDB: Rename class DrawMan -> Gfx
Diffstat (limited to 'engines/hdb/hdb.cpp')
-rw-r--r--engines/hdb/hdb.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/hdb/hdb.cpp b/engines/hdb/hdb.cpp
index 0eb1da5c2d..63b12c07eb 100644
--- a/engines/hdb/hdb.cpp
+++ b/engines/hdb/hdb.cpp
@@ -43,7 +43,7 @@ HDBGame::HDBGame(OSystem *syst, const ADGameDescription *gameDesc) : Engine(syst
_systemInit = false;
g_hdb = this;
_fileMan = new FileMan;
- _gfx = new DrawMan;
+ _gfx = new Gfx;
_lua = new LuaScript;
_map = new Map;
_ai = new AI;
@@ -80,7 +80,7 @@ bool HDBGame::init() {
error("FileMan::openMPC: Cannot find the hyperspace.mpc data file.");
}
if (!_gfx->init()) {
- error("DrawMan::init: Couldn't initialize DrawMan");
+ error("Gfx::init: Couldn't initialize Gfx");
}
if (!_input->init()) {
error("Input::init: Couldn't initialize Input");
@@ -150,7 +150,7 @@ void HDBGame::paint() {
_gfx->drawPointer();
break;
case GAME_LOADING:
- warning("STUB: DrawMan::DrawLoadingScreen required");
+ warning("STUB: Gfx::DrawLoadingScreen required");
break;
}