mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-02 23:01:42 +00:00
TWINE: improved getNextHolomapLocation() in a way that the current location is ordered correctly
This commit is contained in:
parent
17e9f6a2f4
commit
d88f6a6737
@ -429,11 +429,11 @@ int32 Holomap::getNextHolomapLocation(int32 currentLocation, int32 dir) const {
|
||||
} else {
|
||||
i %= NUM_LOCATIONS;
|
||||
}
|
||||
if (_engine->_gameState->_holomapFlags[i] & HOLOMAP_ACTIVE) {
|
||||
if (i == _engine->_scene->_currentSceneIdx || (_engine->_gameState->_holomapFlags[i] & HOLOMAP_ACTIVE) != 0u) {
|
||||
return i;
|
||||
}
|
||||
}
|
||||
return _engine->_scene->_currentSceneIdx;
|
||||
return -1;
|
||||
}
|
||||
|
||||
void Holomap::renderLocations(int xRot, int yRot, int zRot, bool lower) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user