aboutsummaryrefslogtreecommitdiff
path: root/scumm/debugger.cpp
diff options
context:
space:
mode:
authorMax Horn2004-01-05 16:49:14 +0000
committerMax Horn2004-01-05 16:49:14 +0000
commitd834bd9684c6b3f7dc8979086d467446f59ba41b (patch)
tree264f08ac7fce3d72d00606ae02d6c61a42174c42 /scumm/debugger.cpp
parentf506056c3b0fee25445133aa9763fced5a131330 (diff)
downloadscummvm-rg350-d834bd9684c6b3f7dc8979086d467446f59ba41b.tar.gz
scummvm-rg350-d834bd9684c6b3f7dc8979086d467446f59ba41b.tar.bz2
scummvm-rg350-d834bd9684c6b3f7dc8979086d467446f59ba41b.zip
replace more usages of _screenWidth by more appropriate variables/values
svn-id: r12162
Diffstat (limited to 'scumm/debugger.cpp')
-rw-r--r--scumm/debugger.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/debugger.cpp b/scumm/debugger.cpp
index 6b65a9a36d..d20634773b 100644
--- a/scumm/debugger.cpp
+++ b/scumm/debugger.cpp
@@ -709,7 +709,7 @@ void ScummDebugger::drawBox(int box) {
VirtScreen *vs = _vm->findVirtScreen(coords.ul.y);
if (vs != NULL)
- _vm->markRectAsDirty(vs->number, 0, _vm->_screenWidth, 0, _vm->_screenHeight, 0);
+ _vm->markRectAsDirty(vs->number, 0, vs->width, 0, vs->height, 0);
_vm->drawDirtyScreenParts();
_vm->_system->update_screen();
}