diff options
author | Nipun Garg | 2019-06-30 00:48:25 +0530 |
---|---|---|
committer | Eugene Sandulenko | 2019-09-03 17:17:05 +0200 |
commit | a5c9e053ab8f84037290127757e52f809c475a23 (patch) | |
tree | 51a1a13fe703e78efd761b0cb3c1861446e2f633 /engines/hdb | |
parent | b58b5b7ff538ce820e9fca4d26547674e481c241 (diff) | |
download | scummvm-rg350-a5c9e053ab8f84037290127757e52f809c475a23.tar.gz scummvm-rg350-a5c9e053ab8f84037290127757e52f809c475a23.tar.bz2 scummvm-rg350-a5c9e053ab8f84037290127757e52f809c475a23.zip |
HDB: Add stubbed openMessageBar function
Diffstat (limited to 'engines/hdb')
-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) { |