diff options
Diffstat (limited to 'src/d/d_kankyo_wether.cpp')
| -rw-r--r-- | src/d/d_kankyo_wether.cpp | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/src/d/d_kankyo_wether.cpp b/src/d/d_kankyo_wether.cpp index e60bf82f..ba5e6973 100644 --- a/src/d/d_kankyo_wether.cpp +++ b/src/d/d_kankyo_wether.cpp @@ -590,10 +590,14 @@ void wether_move_snow() { /* 80088A50-80088D08 .text wether_move_star__Fv */ void wether_move_star() { - if (dComIfGp_checkStatus(1) && (!g_env_light.mbVrboxInvisible && - strcmp(dComIfGp_getStartStageName(), "M_DragB") != 0) || - strcmp(dComIfGp_getStartStageName(), "Name") == 0) - { + if ( + ( + dComIfGp_checkStatus(1) && + !g_env_light.mbVrboxInvisible && + strcmp(dComIfGp_getStartStageName(), "M_DragB") != 0 + ) || + strcmp(dComIfGp_getStartStageName(), "Name") == 0 + ) { f32 time = g_env_light.getDaytime(); f32 target; |
