From 043e0053630144e8a4d02798e4dec5ce27253698 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Wed, 16 Nov 2022 00:08:37 +0100 Subject: [PATCH] - fixed bad index in pushmove. --- source/core/gamefuncs.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/core/gamefuncs.cpp b/source/core/gamefuncs.cpp index 0c0cf468e..bc166b468 100644 --- a/source/core/gamefuncs.cpp +++ b/source/core/gamefuncs.cpp @@ -1220,7 +1220,7 @@ int pushmove(DVector3& pos, sectortype** pSect, double walldist, double ceildist // this must go both forward and backward so we cannot use iterators. Pity for (unsigned i = 0; i < sec->walls.Size(); i++) { - auto wal = direction > 0 ? &sec->walls[i] : &sec->walls[sec->walls.Size() - i]; + auto wal = direction > 0 ? &sec->walls[i] : &sec->walls[sec->walls.Size() - 1 - i]; if (IsCloseToWall(pos.XY(), wal, walldist - 0.25) == EClose::InFront) {