aboutsummaryrefslogtreecommitdiff
path: root/engines/hdb/window.cpp
diff options
context:
space:
mode:
authorNipun Garg2019-06-28 19:58:18 +0530
committerEugene Sandulenko2019-09-03 17:17:03 +0200
commit2d7ab33be2f820ce0c7c8215cabbb8e1237a449b (patch)
tree77ebde5ed812754e374747d068fb94b4b96d1880 /engines/hdb/window.cpp
parent9bd1d58b8233f0f34c921bb2b17c9af145d25433 (diff)
downloadscummvm-rg350-2d7ab33be2f820ce0c7c8215cabbb8e1237a449b.tar.gz
scummvm-rg350-2d7ab33be2f820ce0c7c8215cabbb8e1237a449b.tar.bz2
scummvm-rg350-2d7ab33be2f820ce0c7c8215cabbb8e1237a449b.zip
HDB: Add _textOutList.push_back() call
Diffstat (limited to 'engines/hdb/window.cpp')
-rw-r--r--engines/hdb/window.cpp2
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) {