summaryrefslogtreecommitdiff
path: root/src/code/z_snap.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/code/z_snap.c')
-rw-r--r--src/code/z_snap.c2
1 files changed, 1 insertions, 1 deletions
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
}