From 0ebd7532b8b4f484600dd5dec4db551ed2709dbe Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Thu, 23 Dec 2021 23:48:39 +0100 Subject: [PATCH] - don't use s() in other getters. --- source/core/coreactor.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/source/core/coreactor.h b/source/core/coreactor.h index ffc845fb3..8e26b1c13 100644 --- a/source/core/coreactor.h +++ b/source/core/coreactor.h @@ -41,7 +41,7 @@ public: bool exists() const { - return (unsigned)s().statnum < MAXSTATUS; + return (unsigned)spr.statnum < MAXSTATUS; } const spritetype& s() const @@ -57,17 +57,17 @@ public: int GetIndex() const { // This is only identical with the sprite index for items spawned at map start. - return s().time; + return spr.time; } sectortype* sector() const { - return s().sector(); + return spr.sector(); } bool insector() const { - return s().insector(); + return spr.insector(); } };