aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNipun Garg2019-06-30 00:48:25 +0530
committerEugene Sandulenko2019-09-03 17:17:05 +0200
commita5c9e053ab8f84037290127757e52f809c475a23 (patch)
tree51a1a13fe703e78efd761b0cb3c1861446e2f633
parentb58b5b7ff538ce820e9fca4d26547674e481c241 (diff)
downloadscummvm-rg350-a5c9e053ab8f84037290127757e52f809c475a23.tar.gz
scummvm-rg350-a5c9e053ab8f84037290127757e52f809c475a23.tar.bz2
scummvm-rg350-a5c9e053ab8f84037290127757e52f809c475a23.zip
HDB: Add stubbed openMessageBar function
-rw-r--r--engines/hdb/window.cpp4
-rw-r--r--engines/hdb/window.h3
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) {