diff options
author | Paweł Kołodziejski | 2003-06-07 14:02:07 +0000 |
---|---|---|
committer | Paweł Kołodziejski | 2003-06-07 14:02:07 +0000 |
commit | 70210d5d3af231a6d3ed1735ce5658fb5fe15997 (patch) | |
tree | 0bec39cb804dcaf9b68f2a4cc1c8cca971d6857d | |
parent | b6b6fb52e50e62b2ea7143d28c52adab53363b7e (diff) | |
download | scummvm-rg350-70210d5d3af231a6d3ed1735ce5658fb5fe15997.tar.gz scummvm-rg350-70210d5d3af231a6d3ed1735ce5658fb5fe15997.tar.bz2 scummvm-rg350-70210d5d3af231a6d3ed1735ce5658fb5fe15997.zip |
fix set costumes for v1
svn-id: r8382
-rw-r--r-- | scumm/scummvm.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/scummvm.cpp b/scumm/scummvm.cpp index 6460b2172c..6b23232c1a 100644 --- a/scumm/scummvm.cpp +++ b/scumm/scummvm.cpp @@ -822,7 +822,7 @@ void Scumm::scummInit() { // this is from IDB if (_version == 1) - _actors[i].costume = i; + _actors[i].setActorCostume(i); } _numNestedScripts = 0; |