mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-02 23:01:42 +00:00
WAGE: Fix crashes during direction change
This commit is contained in:
parent
efc7bf6451
commit
12f02969be
@ -409,10 +409,9 @@ void WageEngine::performMove(Chr *chr, int validMoves) {
|
||||
int dir = _rnd->getRandomNumber(numValidMoves);
|
||||
|
||||
// And get it
|
||||
|
||||
for (int i = 0; i < 4; i++, dir--)
|
||||
if ((validMoves & (1 << i)) != 0) {
|
||||
if (dir == 0) {
|
||||
if (dir == 1) {
|
||||
dir = i;
|
||||
break;
|
||||
}
|
||||
|
@ -336,13 +336,6 @@ void WageEngine::onMove(Designed *what, Designed *from, Designed *to) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (!_temporarilyHidden) {
|
||||
assert(what);
|
||||
assert(from);
|
||||
assert(to);
|
||||
debug(6, "move: %s, %s -> %s", what->_name.c_str(), from->_name.c_str(), to->_name.c_str());
|
||||
}
|
||||
|
||||
if (from == currentScene || to == currentScene ||
|
||||
(what->_classType == CHR && ((Chr *)what)->_currentScene == currentScene) ||
|
||||
(what->_classType == OBJ && ((Obj *)what)->_currentScene == currentScene))
|
||||
|
Loading…
x
Reference in New Issue
Block a user