aboutsummaryrefslogtreecommitdiff
path: root/queen/cutaway.cpp
diff options
context:
space:
mode:
authorGregory Montoir2004-01-07 15:45:24 +0000
committerGregory Montoir2004-01-07 15:45:24 +0000
commit272eb212878e90285f21a6b3d4ab655a9e59b0b3 (patch)
tree88d60176297bf45be859a3119f3f9bbfe67e4fc8 /queen/cutaway.cpp
parentcb609b4cf544cc369b6b38ad685a939d73a79ffa (diff)
downloadscummvm-rg350-272eb212878e90285f21a6b3d4ab655a9e59b0b3.tar.gz
scummvm-rg350-272eb212878e90285f21a6b3d4ab655a9e59b0b3.tar.bz2
scummvm-rg350-272eb212878e90285f21a6b3d4ab655a9e59b0b3.zip
- moved some Person/Anim code to Graphics
- some renaming svn-id: r12218
Diffstat (limited to 'queen/cutaway.cpp')
-rw-r--r--queen/cutaway.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/queen/cutaway.cpp b/queen/cutaway.cpp
index 05e345a219..c8b9c08308 100644
--- a/queen/cutaway.cpp
+++ b/queen/cutaway.cpp
@@ -794,7 +794,7 @@ void Cutaway::handlePersonRecord(
}
}
else {
- _vm->logic()->personSetData(
+ _vm->logic()->initPerson(
object.objectNumber - _vm->logic()->currentRoomData(),
"", true, &p);
@@ -1023,7 +1023,7 @@ void Cutaway::run(char *nextFilename) {
if (object->image == -3 || object->image == -4) {
k++;
if (object->name > 0) {
- _vm->graphics()->animReset(k);
+ _vm->graphics()->resetPersonAnim(k);
}
}
}
@@ -1040,7 +1040,6 @@ void Cutaway::run(char *nextFilename) {
_vm->logic()->gameState(3, 1);
_vm->logic()->inventoryRefresh();
}
-
}
joeBob->animating = 0;