diff options
| author | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2026-07-19 15:54:06 -0400 |
|---|---|---|
| committer | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2026-07-19 15:54:06 -0400 |
| commit | 0fdc3a3f3b1bd96ad65ccee764967e964b3a7eab (patch) | |
| tree | 9ef686e600e7f192b24036d3d0303f12f3de07aa /src/d/d_kankyo_rain.cpp | |
| parent | 9f18a6f34c4d96e54e52abdbcf287a7bfcf6c8e4 (diff) | |
Cleanup/documentation for various photo-related code
Diffstat (limited to 'src/d/d_kankyo_rain.cpp')
| -rw-r--r-- | src/d/d_kankyo_rain.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/d/d_kankyo_rain.cpp b/src/d/d_kankyo_rain.cpp index 2fb04d0b..d185baed 100644 --- a/src/d/d_kankyo_rain.cpp +++ b/src/d/d_kankyo_rain.cpp @@ -1798,11 +1798,11 @@ void snap_sunmoon_proc(cXyz* pPos, int type) { snapObj.SetGeoSph(pos, 8000.0f); if (type == 9) - snapObj.SetInf(9, NULL, 0xFF, 4, 0x7FFF); + snapObj.SetInf(DSNAP_TYPE_UNK09, NULL, 0xFF, 4, 0x7FFF); else if (type == 0) - snapObj.SetInf(7, NULL, 0xFF, 4, 0x7FFF); + snapObj.SetInf(DSNAP_TYPE_UNK07, NULL, 0xFF, 4, 0x7FFF); else - snapObj.SetInf(8, NULL, 0xFF, 4, 0x7FFF); + snapObj.SetInf(DSNAP_TYPE_UNK08, NULL, 0xFF, 4, 0x7FFF); dSnap_RegistSnapObj(snapObj); } } |
