diff options
author | Max Horn | 2009-04-24 10:45:09 +0000 |
---|---|---|
committer | Max Horn | 2009-04-24 10:45:09 +0000 |
commit | 86b36574767f0ab43e9e1f25dbe611ab7b35bf78 (patch) | |
tree | 8fe38eec523e56b788e83766d267b2fb37457f78 /engines/sci/engine/scriptdebug.cpp | |
parent | 6fef323ec7bd028107118a01030844e019372dd3 (diff) | |
download | scummvm-rg350-86b36574767f0ab43e9e1f25dbe611ab7b35bf78.tar.gz scummvm-rg350-86b36574767f0ab43e9e1f25dbe611ab7b35bf78.tar.bz2 scummvm-rg350-86b36574767f0ab43e9e1f25dbe611ab7b35bf78.zip |
SCI: Started to C++ify the gfxw_widget_t codebase
svn-id: r40103
Diffstat (limited to 'engines/sci/engine/scriptdebug.cpp')
-rw-r--r-- | engines/sci/engine/scriptdebug.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/sci/engine/scriptdebug.cpp b/engines/sci/engine/scriptdebug.cpp index d2760f7315..f9afa36ae5 100644 --- a/engines/sci/engine/scriptdebug.cpp +++ b/engines/sci/engine/scriptdebug.cpp @@ -1663,7 +1663,7 @@ static int c_gfx_current_port(EngineState *s) { if (!s->port) sciprintf("none.\n"); else - sciprintf("%d\n", s->port->ID); + sciprintf("%d\n", s->port->_ID); return 0; } @@ -2767,8 +2767,8 @@ int c_statusbar(EngineState *s) { return 1; } - s->titlebar_port->color = s->ega_colors[cmd_params[0].val]; - s->titlebar_port->bgcolor = s->ega_colors[cmd_params[1].val]; + s->titlebar_port->_color = s->ega_colors[cmd_params[0].val]; + s->titlebar_port->_bgcolor = s->ega_colors[cmd_params[1].val]; s->status_bar_foreground = cmd_params[0].val; s->status_bar_background = cmd_params[1].val; |