aboutsummaryrefslogtreecommitdiff
path: root/scumm/debugger.cpp
diff options
context:
space:
mode:
authorMax Horn2004-09-18 22:42:45 +0000
committerMax Horn2004-09-18 22:42:45 +0000
commit768133d6e6e4432d599fcf1261193334227b2033 (patch)
treed9ab4bce2466c4808f83244bd8ae4840f0468c70 /scumm/debugger.cpp
parente74a3c9a2bdaead10b130e09e7a9cdf2fac17d55 (diff)
downloadscummvm-rg350-768133d6e6e4432d599fcf1261193334227b2033.tar.gz
scummvm-rg350-768133d6e6e4432d599fcf1261193334227b2033.tar.bz2
scummvm-rg350-768133d6e6e4432d599fcf1261193334227b2033.zip
Rename some member vars to avoid _ followed by an uppercase letter. More of those are left in the code, though (and I am not really sure whether we want to change that, so far we had no problems caused by this)
svn-id: r15175
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 422ed1f13f..815ac7699d 100644
--- a/scumm/debugger.cpp
+++ b/scumm/debugger.cpp
@@ -494,7 +494,7 @@ bool ScummDebugger::Cmd_Object(int argc, const char **argv) {
} else if (!strcmp(argv[2], "state")) {
_vm->putState(obj, atoi(argv[3]));
//is BgNeedsRedraw enough?
- _vm->_BgNeedsRedraw = true;
+ _vm->_bgNeedsRedraw = true;
} else if (!strcmp(argv[2], "name")) {
DebugPrintf("Name of object %d: %s\n", obj, _vm->getObjOrActorName(obj));
} else {