diff -ur --exclude=CVS --exclude=Makefile ScummVM/scumm/actor.cpp ScummVM+hack/scumm/actor.cpp
old
|
new
|
|
1235 | 1235 | void Actor::setActorCostume(int c) { |
1236 | 1236 | int i; |
1237 | 1237 | |
| 1238 | // HACK: The "Mr. Veggie Head" mini-game in Fatty Bear's Birthday |
| 1239 | // surprise has several costumes where this bit is set. It seems to |
| 1240 | // work fine if I just clear the bit, but surely it has to mean |
| 1241 | // something? |
| 1242 | |
| 1243 | if (c & 0x8000) |
| 1244 | c &= 0x7fff; |
| 1245 | |
1238 | 1246 | if ((_vm->_features & GF_HUMONGOUS) && (c == -1 || c == -2)) { |
1239 | 1247 | skipLimb = (c == -1); |
1240 | 1248 | needRedraw = true; |