diff options
| author | Elijah Thomas <elijahthomas774@gmail.com> | 2023-08-12 10:47:25 -0400 |
|---|---|---|
| committer | Elijah Thomas <elijahthomas774@gmail.com> | 2023-08-12 10:47:25 -0400 |
| commit | 683dc91a53be327409ed7efb636626d9f3b9cfac (patch) | |
| tree | 34f017619e9965e5892d2e76df38644fce0cb196 /src/d/d_base.cpp | |
| parent | de8b60021c270b1a46fa13edfa3bd248b23e35e7 (diff) | |
starting to organize and progress on dAcBase_c
Diffstat (limited to 'src/d/d_base.cpp')
| -rw-r--r-- | src/d/d_base.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/d/d_base.cpp b/src/d/d_base.cpp index 7c2dbe8d..6532708b 100644 --- a/src/d/d_base.cpp +++ b/src/d/d_base.cpp @@ -1,14 +1,12 @@ #include <d/d_base.h> -extern "C" fProfile::fBaseProfile_c** DAT_ACTOR_ALLOCATION_FUNCTIONS; - // .sbss /* 805750c0 */ u32 dBase_c::s_ExecuteControlFlags; /* 805750c0 */ u32 dBase_c::s_DrawControlFlags; /* 805750c0 */ u32 dBase_c::s_NextExecuteControlFlags; dBase_c::dBase_c() : fBase_c() { - baseProperties = DAT_ACTOR_ALLOCATION_FUNCTIONS[profile_name]->mBaseProperties; + baseProperties = (*fProfile::sProfileList)[profile_name]->mBaseProperties; } void dBase_c::postDraw(fBase_c::MAIN_STATE_e status) { |
