From 6ed157ccdb07029f2347017d8b69de159b37d52c Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Wed, 14 Sep 2022 18:22:43 +0200 Subject: [PATCH] - handle all remaining int_pos outside the sound code. SPOTLITE has no handler, so its temp_data is of no use. --- source/games/duke/src/sectors.cpp | 2 +- source/games/duke/src/spawn_d.cpp | 2 -- source/games/duke/src/spawn_r.cpp | 2 -- 3 files changed, 1 insertion(+), 5 deletions(-) diff --git a/source/games/duke/src/sectors.cpp b/source/games/duke/src/sectors.cpp index eca85363f..41a2a8264 100644 --- a/source/games/duke/src/sectors.cpp +++ b/source/games/duke/src/sectors.cpp @@ -638,7 +638,7 @@ static void handle_st15(sectortype* sptr, DDukeActor* actor) } else { - if (sptr->int_floorz() > a2->int_pos().Z) + if (sptr->floorz > a2->spr.pos.Z) activatewarpelevators(a2, -1); else activatewarpelevators(a2, 1); diff --git a/source/games/duke/src/spawn_d.cpp b/source/games/duke/src/spawn_d.cpp index cb940b6ea..b439cf8db 100644 --- a/source/games/duke/src/spawn_d.cpp +++ b/source/games/duke/src/spawn_d.cpp @@ -540,8 +540,6 @@ DDukeActor* spawninit_d(DDukeActor* actj, DDukeActor* act, TArray* break; case SPOTLITE: - act->temp_data[0] = act->int_pos().X; - act->temp_data[1] = act->int_pos().Y; break; case BULLETHOLE: act->spr.xrepeat = act->spr.yrepeat = 3; diff --git a/source/games/duke/src/spawn_r.cpp b/source/games/duke/src/spawn_r.cpp index 20d599cc6..a757854a7 100644 --- a/source/games/duke/src/spawn_r.cpp +++ b/source/games/duke/src/spawn_r.cpp @@ -569,8 +569,6 @@ DDukeActor* spawninit_r(DDukeActor* actj, DDukeActor* act, TArray* break; case SPOTLITE: - act->temp_data[0] = act->int_pos().X; - act->temp_data[1] = act->int_pos().Y; break; case BULLETHOLE: act->spr.xrepeat = act->spr.yrepeat = 3;