diff options
author | Eugene Sandulenko | 2019-07-02 00:25:35 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2019-09-03 17:17:07 +0200 |
commit | cc1e3d5deed6e8717ac10e6ec527d52ce09429c4 (patch) | |
tree | 65cc8ff21c687551aa7e54d27065d18c1a4d833e | |
parent | b9fbfa163914701016f6f396668ba3efcbd8b2d1 (diff) | |
download | scummvm-rg350-cc1e3d5deed6e8717ac10e6ec527d52ce09429c4.tar.gz scummvm-rg350-cc1e3d5deed6e8717ac10e6ec527d52ce09429c4.tar.bz2 scummvm-rg350-cc1e3d5deed6e8717ac10e6ec527d52ce09429c4.zip |
HDB: Fix compilation
-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 120191c2de..c6372a7632 100644 --- a/engines/hdb/window.cpp +++ b/engines/hdb/window.cpp @@ -476,7 +476,7 @@ void Window::openMessageBar(const char *title, int time) { return; for (i = 0; i < _numMsgQueue; i++) - if (!_stricmp(_msgQueueStr[i], title)) + if (!scumm_stricmp(_msgQueueStr[i], title)) return; strcpy(_msgQueueStr[_numMsgQueue], title); _msgQueueWait[_numMsgQueue] = time; @@ -870,7 +870,7 @@ void Window::drawTextOut() { g_hdb->_drawMan->setTextEdges(0, 480, 0, kScreenHeight); time = g_system->getMillis(); - + for (uint i = 0; i < _textOutList.size(); i++) { t = _textOutList[i]; g_hdb->_drawMan->setCursor(t->x, t->y); |