ASYLUM: Fix warning introduced by r442.
git-svn-id: http://asylumengine.googlecode.com/svn/trunk@443 0bfb4aae-4ea4-11de-8d8d-752d95cf3e3c
This commit is contained in:
parent
6a94eee3c2
commit
c31a0d39c8
1 changed files with 1 additions and 1 deletions
|
@ -275,7 +275,7 @@ void Scene::updateActorDirection(int actorIndex, int param) {
|
||||||
// active (via the global at .data:00543504)
|
// active (via the global at .data:00543504)
|
||||||
// FIXME skipping for now
|
// FIXME skipping for now
|
||||||
if (0) {
|
if (0) {
|
||||||
if (vm()->_rnd.getRandomNumber(-2) == 1 && defaultActorDirectionLoaded(actorIndex, 15)) {
|
if (vm()->_rnd.getRandomBit() == 1 && defaultActorDirectionLoaded(actorIndex, 15)) {
|
||||||
actor->frameNum = 0;
|
actor->frameNum = 0;
|
||||||
if (actor->direction > 4)
|
if (actor->direction > 4)
|
||||||
actor->direction = 8 - actor->direction;
|
actor->direction = 8 - actor->direction;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue