aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engines/hdb/gfx.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/engines/hdb/gfx.cpp b/engines/hdb/gfx.cpp
index 7c83bf1def..87da3459cb 100644
--- a/engines/hdb/gfx.cpp
+++ b/engines/hdb/gfx.cpp
@@ -1055,6 +1055,14 @@ void Gfx::drawDebugInfo(Tile *_debugLogo, int fps) {
sprintf(buff, "Player height level: %d", p->level);
drawText(buff);
}
+
+ setCursor(0, 48);
+ sprintf(buff, "Map Name: %s", g_hdb->getInMapName());
+ drawText(buff);
+
+ setCursor(0, 64);
+ g_hdb->getActionMode() ? sprintf(buff, "Action Mode") : sprintf(buff, "Puzzle Mode");
+ drawText(buff);
}
Picture::Picture() : _width(0), _height(0) {