aboutsummaryrefslogtreecommitdiff
path: root/gui
diff options
context:
space:
mode:
authorMax Horn2002-09-22 01:17:53 +0000
committerMax Horn2002-09-22 01:17:53 +0000
commita681eb029e7fc5b0383d5cdfce2c561e8fa221d2 (patch)
tree62c79d406f1fdd730eb8000e25a42ecd557a990d /gui
parent45ce1d111312ec413d6d680092f98a4f49e31556 (diff)
downloadscummvm-rg350-a681eb029e7fc5b0383d5cdfce2c561e8fa221d2.tar.gz
scummvm-rg350-a681eb029e7fc5b0383d5cdfce2c561e8fa221d2.tar.bz2
scummvm-rg350-a681eb029e7fc5b0383d5cdfce2c561e8fa221d2.zip
renamec string -> _string and sentence -> _sentence in class Scumm (I originally reworked StringTab, but then noticed the save game format depends on it <sigh>)
svn-id: r4995
Diffstat (limited to 'gui')
-rw-r--r--gui/gui.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/gui.cpp b/gui/gui.cpp
index 817e8c6344..c26a522693 100644
--- a/gui/gui.cpp
+++ b/gui/gui.cpp
@@ -337,7 +337,7 @@ const GuiWidget *Gui::widgetFromPos(int x, int y)
void Gui::drawString(const char *str, int x, int y, int w, byte color, bool center)
{
- StringTab *st = &_s->string[5];
+ StringTab *st = &_s->_string[5];
st->charset = 1;
st->center = center;
st->color = color;