diff options
| author | Nipun Garg | 2019-06-23 06:41:30 +0530 | 
|---|---|---|
| committer | Eugene Sandulenko | 2019-09-03 17:16:57 +0200 | 
| commit | 66a7c617df1be61beed21134b057765460d8bea2 (patch) | |
| tree | 80dc489c58d19df6f87a7541a574a4f38eeea80f | |
| parent | ae32825243138f8c12faf6bc3bc81629da479291 (diff) | |
| download | scummvm-rg350-66a7c617df1be61beed21134b057765460d8bea2.tar.gz scummvm-rg350-66a7c617df1be61beed21134b057765460d8bea2.tar.bz2 scummvm-rg350-66a7c617df1be61beed21134b057765460d8bea2.zip | |
HDB: Add setDialogDelay()`
| -rw-r--r-- | engines/hdb/window.cpp | 4 | 
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 | 
