diff --git a/source/games/sw/src/jsector.cpp b/source/games/sw/src/jsector.cpp index cecaa511a..11bd55790 100644 --- a/source/games/sw/src/jsector.cpp +++ b/source/games/sw/src/jsector.cpp @@ -688,12 +688,12 @@ void GameInterface::UpdateCameras(double smoothratio) JS_DrawCameras(cam_pp, cam_tx, cam_ty, cam_tz, smoothratio); } -void GameInterface::EnterPortal(DCoreActor* viewer, int type) +void GameInterface::EnterPortal(spritetype* viewer, int type) { if (type == PORTAL_WALL_MIRROR) display_mirror++; } -void GameInterface::LeavePortal(DCoreActor* viewer, int type) +void GameInterface::LeavePortal(spritetype* viewer, int type) { if (type == PORTAL_WALL_MIRROR) display_mirror--; }