From a5c9e053ab8f84037290127757e52f809c475a23 Mon Sep 17 00:00:00 2001 From: Nipun Garg Date: Sun, 30 Jun 2019 00:48:25 +0530 Subject: HDB: Add stubbed openMessageBar function --- engines/hdb/window.cpp | 4 ++++ engines/hdb/window.h | 3 +++ 2 files changed, 7 insertions(+) (limited to 'engines/hdb') 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) { -- cgit v1.2.3