diff options
-rw-r--r-- | engines/hdb/window.cpp | 4 | ||||
-rw-r--r-- | engines/hdb/window.h | 3 |
2 files changed, 7 insertions, 0 deletions
diff --git a/engines/hdb/window.cpp b/engines/hdb/window.cpp index 5532ccd466..a8ed9925ce 100644 --- a/engines/hdb/window.cpp +++ b/engines/hdb/window.cpp @@ -318,6 +318,10 @@ void Window::setDialogDelay(int delay) { _dialogDelay = g_system->getMillis() + 1000 * delay; } +void Window::openMessageBar(const char *msg, int count) { + warning("STUB: Add openMessageBar()"); +} + void Window::drawInventory() { int baseX, drawX, drawY; static uint32 timer = g_hdb->getTimeSlice() + 300; diff --git a/engines/hdb/window.h b/engines/hdb/window.h index b017c4c8fd..b030c86e3b 100644 --- a/engines/hdb/window.h +++ b/engines/hdb/window.h @@ -97,6 +97,9 @@ public: return _dialogInfo.active; } + // MessageBar Functions + void openMessageBar(const char *msg, int count); + // Inventory Functions void drawInventory(); void setInvSelect(int status) { |