diff options
| author | Zeclos <Zeclos99@gmail.com> | 2026-03-12 04:29:25 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-03-11 23:29:25 -0400 |
| commit | 27793379ea5ff784afb79579bd58231187543027 (patch) | |
| tree | 73155e7e328c010e928113ffe4712ed5756377fe /src/d/d_save.cpp | |
| parent | 256b4eeb37caccb3fc3a62bb40b69e7b4907c9a1 (diff) | |
D_a_obj_apzl matching (#923)
* bit too difficult for me for now, might go back later
* progress
* getmsg
* logic matching data isnt
* data section matches
* mathubcg 100%
* cleanup
* revert this change
* final cleanup and configure.py
* nevermind cleanup
* Equivalent onstead of matching
* removed padding
* cleanup code comments and a bit more
* matching
* cleanup
* matching for retail
* matching
* documentation
* changed field name
* matching for GZLE01, GZLP01
* GZLJ01 and D44J01
* verion select for jutassert
* tiny bit of cleanup and moving enums to header
* feedback from pr
* itemNo renamed to enum
Diffstat (limited to 'src/d/d_save.cpp')
| -rw-r--r-- | src/d/d_save.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/d/d_save.cpp b/src/d/d_save.cpp index ea5f3c3a..f73fad38 100644 --- a/src/d/d_save.cpp +++ b/src/d/d_save.cpp @@ -960,8 +960,8 @@ void dSv_player_info_c::init() { mDeathCount = 0; mClearCount = 0; - for (int i = 0; i < ARRAY_SIZE(field_0x47); i++) { - field_0x47[i] = 0; + for (int i = 0; i < ARRAY_SIZE(mPuzzleData); i++) { + mPuzzleData[i] = 0; } mRandomSalvagePoint = cM_rndF(3.0f); |
