Skip to content

Commit be1543d

Browse files
removed more water particles in power (at least the ones that were missing)
1 parent c8de637 commit be1543d

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

src/game/mario_actions_cutscene.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1185,9 +1185,11 @@ s32 mario_execute_cutscene_action(struct MarioState *m) {
11851185
}
11861186
/* clang-format on */
11871187

1188+
#ifdef POWBUILD
11881189
if (!cancel && (m->input & INPUT_IN_WATER)) {
11891190
m->particleFlags |= PARTICLE_IDLE_WATER_WAVE;
11901191
}
1192+
#endif
11911193

11921194
return cancel;
11931195
}

src/game/mario_actions_object.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -388,9 +388,10 @@ s32 mario_execute_object_action(struct MarioState *m) {
388388
}
389389
/* clang-format on */
390390

391+
#ifdef POWBUILD
391392
if (!cancel && (m->input & INPUT_IN_WATER)) {
392393
m->particleFlags |= PARTICLE_IDLE_WATER_WAVE;
393394
}
394-
395+
#endif
395396
return cancel;
396397
}

0 commit comments

Comments
 (0)