diff options
author | Eugene Sandulenko | 2013-10-08 00:08:26 +0300 |
---|---|---|
committer | Eugene Sandulenko | 2013-10-08 00:11:18 +0300 |
commit | a7055e75d12c041c9b6e94887b753f652d3e604c (patch) | |
tree | ac1aea0fc95ea42de813d3bf42c66bafd59bfa82 /engines/parallaction | |
parent | 9faa5d66b706f3b5cebd11d146dbb945dfc334e0 (diff) | |
download | scummvm-rg350-a7055e75d12c041c9b6e94887b753f652d3e604c.tar.gz scummvm-rg350-a7055e75d12c041c9b6e94887b753f652d3e604c.tar.bz2 scummvm-rg350-a7055e75d12c041c9b6e94887b753f652d3e604c.zip |
PARALLACTION: Comment out unused assignment. CID 1002508
Diffstat (limited to 'engines/parallaction')
-rw-r--r-- | engines/parallaction/debug.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/parallaction/debug.cpp b/engines/parallaction/debug.cpp index 25acac9b06..4a8f8c71d7 100644 --- a/engines/parallaction/debug.cpp +++ b/engines/parallaction/debug.cpp @@ -62,8 +62,8 @@ void Debugger::postEnter() { bool Debugger::Cmd_Location(int argc, const char **argv) { - const char *character = _vm->_char.getName(); - const char *location = _vm->_location._name; + const char *character; // = _vm->_char.getName(); + const char *location; // = _vm->_location._name; char tmp[PATH_LEN]; |