From fd6d09273ffd0c873429ac5a9c38b5b8ae4084e6 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Fri, 18 Feb 2022 00:19:21 +0100 Subject: [PATCH] - reverted wall pointer fix for FANSPRITE setup. Turns out the bug came from the DOS code, but changing this breaks the fans. --- source/games/duke/src/premap_d.cpp | 2 +- source/games/duke/src/premap_r.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/source/games/duke/src/premap_d.cpp b/source/games/duke/src/premap_d.cpp index 981e01bc4..45409622f 100644 --- a/source/games/duke/src/premap_d.cpp +++ b/source/games/duke/src/premap_d.cpp @@ -399,7 +399,7 @@ void prelevel_d(int g, TArray& actors) { case FANSHADOW: case FANSPRITE: - wal.cstat |= CSTAT_WALL_BLOCK | CSTAT_WALL_BLOCK_HITSCAN; + //wal.cstat |= CSTAT_WALL_BLOCK | CSTAT_WALL_BLOCK_HITSCAN; Original code assigned this to 'wall', i.e. wall[0] animwall[numanimwalls].wall = &wal; numanimwalls++; break; diff --git a/source/games/duke/src/premap_r.cpp b/source/games/duke/src/premap_r.cpp index d06c97d44..f85b7c529 100644 --- a/source/games/duke/src/premap_r.cpp +++ b/source/games/duke/src/premap_r.cpp @@ -730,7 +730,7 @@ void prelevel_r(int g, TArray& actors) switch (wal->overpicnum) { case FANSPRITE: - wal->cstat |= CSTAT_WALL_BLOCK | CSTAT_WALL_BLOCK_HITSCAN; + //wal.cstat |= CSTAT_WALL_BLOCK | CSTAT_WALL_BLOCK_HITSCAN; Original code assigned this to 'wall', i.e. wall[0] animwall[numanimwalls].wall = wal; numanimwalls++; break;