diff options
| author | SuperDude88 <82904174+SuperDude88@users.noreply.github.com> | 2023-12-03 14:48:02 -0500 |
|---|---|---|
| committer | SuperDude88 <82904174+SuperDude88@users.noreply.github.com> | 2023-12-03 14:48:02 -0500 |
| commit | a8f2704bad1c80f3da8e2774dcd9a7e98181ac8f (patch) | |
| tree | f154c21f5cc118f3ee35983941f7ec24a7d9ecda /src/d/actor/d_a_ghostship.cpp | |
| parent | d156ea55bae7ae1a467d205b01c47afa689a8de2 (diff) | |
daTag_Gship
Match daTag_Gship, fix .data for daGhostship
Diffstat (limited to 'src/d/actor/d_a_ghostship.cpp')
| -rw-r--r-- | src/d/actor/d_a_ghostship.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/d/actor/d_a_ghostship.cpp b/src/d/actor/d_a_ghostship.cpp index 9f2f8c6e..ec113ede 100644 --- a/src/d/actor/d_a_ghostship.cpp +++ b/src/d/actor/d_a_ghostship.cpp @@ -12,6 +12,12 @@ #include "d/d_s_play.h" #include "d/d_kankyo_wether.h" +// Needed for .data to match. +static f32 dummy1[3] = {1.0f, 1.0f, 1.0f}; +static f32 dummy2[3] = {1.0f, 1.0f, 1.0f}; +static u8 dummy3[4] = {0x02, 0x00, 0x02, 0x01}; +static f64 dummy4[2] = {3.0, 0.5}; + const u32 daGhostship_c::m_heapsize = 0x1EA0; const char daGhostship_c::m_arc_name[] = "Ayush"; const char daGhostship_c::m_cloth_arc_name[] = "Cloth"; |
