diff options
author | Johannes Schickel | 2009-10-31 18:36:13 +0000 |
---|---|---|
committer | Johannes Schickel | 2009-10-31 18:36:13 +0000 |
commit | 67a7492fa2e46c113b15469a9b44ffdb1ece2af9 (patch) | |
tree | c1a431d8e432865861c26e6514b77f67d8dd0bda /engines | |
parent | 93d26113fd4ddccbf9cfa09bc0e24ccbb1d7325c (diff) | |
download | scummvm-rg350-67a7492fa2e46c113b15469a9b44ffdb1ece2af9.tar.gz scummvm-rg350-67a7492fa2e46c113b15469a9b44ffdb1ece2af9.tar.bz2 scummvm-rg350-67a7492fa2e46c113b15469a9b44ffdb1ece2af9.zip |
Comment out unused variables.
svn-id: r45574
Diffstat (limited to 'engines')
-rw-r--r-- | engines/sci/engine/kgraphics.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/sci/engine/kgraphics.cpp b/engines/sci/engine/kgraphics.cpp index 0c5284e82b..e3fc3ac947 100644 --- a/engines/sci/engine/kgraphics.cpp +++ b/engines/sci/engine/kgraphics.cpp @@ -655,11 +655,11 @@ reg_t kPortrait(EngineState *s, int argc, reg_t *argv) { if (argc == 10) { Common::String resourceName = s->_segMan->getString(argv[1]); Common::Point portraitPos = Common::Point(argv[2].toUint16(), argv[3].toUint16()); - uint resourceNum = argv[4].toUint16() & 0xff; + /*uint resourceNum = argv[4].toUint16() & 0xff; uint noun = argv[5].toUint16() & 0xff; uint verb = argv[6].toUint16() & 0xff; uint cond = argv[7].toUint16() & 0xff; - uint seq = argv[8].toUint16() & 0xff; + uint seq = argv[8].toUint16() & 0xff;*/ // argv[9] is usually 0??!! // TODO: implement this. Looks to be a modified version of kDoSync @@ -672,7 +672,7 @@ reg_t kPortrait(EngineState *s, int argc, reg_t *argv) { } case 2: { // unload resource if (argc == 2) { - uint16 portraitId = argv[1].toUint16(); + //uint16 portraitId = argv[1].toUint16(); // TODO: implement this |