fix obj_can_see_obj not working in release build

This commit is contained in:
sonil 2024-02-05 14:17:43 +08:00
parent 8325823493
commit 700c34cda5
1 changed files with 1 additions and 1 deletions

View File

@ -1799,7 +1799,7 @@ static void opObjectCanSeeObject(Program* program)
if (object2->elevation == object1->elevation) { if (object2->elevation == object1->elevation) {
if (object2->tile != -1 && object1->tile != -1) { if (object2->tile != -1 && object1->tile != -1) {
if (isWithinPerception(object1, object2)) { if (isWithinPerception(object1, object2)) {
Object* obstacle; Object* obstacle = nullptr;
_make_straight_path(object1, object1->tile, object2->tile, nullptr, &obstacle, 16); _make_straight_path(object1, object1->tile, object2->tile, nullptr, &obstacle, 16);
if (obstacle == object2) { if (obstacle == object2) {
canSee = true; canSee = true;