From bb96e47f8df9fa42e2120b7acda90432bacfde39 Mon Sep 17 00:00:00 2001 From: Derek Hensley Date: Mon, 15 Aug 2022 18:42:21 -0700 Subject: General Cleanup 11 (#992) * char -> UNK_TYPE1 * SubS fixes * func_800B8500 * macros * misc * A few more GET_{ACTOR} vs {ACTOR}_GETw * More Macros * fix * PARSE_TYPE -> GET_TYPE * 1 more --- src/code/z_snap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/code') diff --git a/src/code/z_snap.c b/src/code/z_snap.c index 246309749..7a234ca22 100644 --- a/src/code/z_snap.c +++ b/src/code/z_snap.c @@ -49,7 +49,7 @@ s32 Snap_RecordPictographedActors(PlayState* play) { // Actors which may be pictographed anywhere switch (actor->id) { case ACTOR_EN_KAKASI: - if (GET_KAKASI_ABOVE_GROUND(actor) == 1) { + if (KAKASI_GET_ABOVE_GROUND(actor) == 1) { seen |= PICTO_SEEN_ANYWHERE; break; //! @bug break is inside conditional, meaning it falls through if it is false } -- cgit v1.2.3