aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNipun Garg2019-06-23 06:41:30 +0530
committerEugene Sandulenko2019-09-03 17:16:57 +0200
commit66a7c617df1be61beed21134b057765460d8bea2 (patch)
tree80dc489c58d19df6f87a7541a574a4f38eeea80f
parentae32825243138f8c12faf6bc3bc81629da479291 (diff)
downloadscummvm-rg350-66a7c617df1be61beed21134b057765460d8bea2.tar.gz
scummvm-rg350-66a7c617df1be61beed21134b057765460d8bea2.tar.bz2
scummvm-rg350-66a7c617df1be61beed21134b057765460d8bea2.zip
HDB: Add setDialogDelay()`
-rw-r--r--engines/hdb/window.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/hdb/window.cpp b/engines/hdb/window.cpp
index f157ed644d..23f5b248a1 100644
--- a/engines/hdb/window.cpp
+++ b/engines/hdb/window.cpp
@@ -124,8 +124,8 @@ void Window::openDialog(const char *title, int tileIndex, const char *string, in
warning("STUB: openDialog: Play SND_MOVE_SELECTION");
}
-void Window::setDialogDelay(int seconds) {
- warning("STUB: Window::setDialogDelay() required");
+void Window::setDialogDelay(int delay) {
+ _dialogDelay = g_system->getMillis() + 1000 * delay;
}
} // End of Namespace