diff options
| author | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2025-03-17 22:26:56 -0400 |
|---|---|---|
| committer | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2025-03-17 22:26:56 -0400 |
| commit | 822b13e57a978cb940abfdb2286588ad3c338b4d (patch) | |
| tree | 7cb41bc9704d93c8659f4f0e596dcd503da6064f /src/d/d_kankyo_wether.cpp | |
| parent | 455ff4a5717c39b8d2fae08528eace46b7dc6d38 (diff) | |
Add `cPhs_State` typedef and use it everywhere
Diffstat (limited to 'src/d/d_kankyo_wether.cpp')
| -rw-r--r-- | src/d/d_kankyo_wether.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/d/d_kankyo_wether.cpp b/src/d/d_kankyo_wether.cpp index 82156e5c..e60bf82f 100644 --- a/src/d/d_kankyo_wether.cpp +++ b/src/d/d_kankyo_wether.cpp @@ -1369,7 +1369,7 @@ void dKyw_evt_wind_set_go() { /* 8008A96C-8008A9F8 .text dKyw_gbwind_use_check__Fv */ BOOL dKyw_gbwind_use_check() { dStage_FileList_dt_c* fili_p = NULL; - int rt = 0; + BOOL rt = 0; if (g_env_light.mWind.mpWindVecOverride == NULL) { s32 roomNo = dComIfGp_roomControl_getStayNo(); @@ -1378,7 +1378,7 @@ BOOL dKyw_gbwind_use_check() { } if (fili_p != NULL && dStage_FileList_dt_GlobalWindLevel(fili_p) <= 2) { - rt = 1; + rt = TRUE; } } |
