diff options
author | Nipun Garg | 2019-06-28 19:58:18 +0530 |
---|---|---|
committer | Eugene Sandulenko | 2019-09-03 17:17:03 +0200 |
commit | 2d7ab33be2f820ce0c7c8215cabbb8e1237a449b (patch) | |
tree | 77ebde5ed812754e374747d068fb94b4b96d1880 /engines | |
parent | 9bd1d58b8233f0f34c921bb2b17c9af145d25433 (diff) | |
download | scummvm-rg350-2d7ab33be2f820ce0c7c8215cabbb8e1237a449b.tar.gz scummvm-rg350-2d7ab33be2f820ce0c7c8215cabbb8e1237a449b.tar.bz2 scummvm-rg350-2d7ab33be2f820ce0c7c8215cabbb8e1237a449b.zip |
HDB: Add _textOutList.push_back() call
Diffstat (limited to 'engines')
-rw-r--r-- | engines/hdb/window.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/engines/hdb/window.cpp b/engines/hdb/window.cpp index aa10fdef1b..041bceb1f6 100644 --- a/engines/hdb/window.cpp +++ b/engines/hdb/window.cpp @@ -397,6 +397,8 @@ void Window::textOut(const char *text, int x, int y, int timer) { g_hdb->_drawMan->getDimensions(t->text, &pw, &lines); t->x = kTextOutCenterX - pw / 2; } + + _textOutList.push_back(t); } void Window::centerTextOut(const char *text, int y, int timer) { |