diff options
| author | elijah-thomas774 <elijahthomas774@gmail.com> | 2025-09-16 21:43:25 -0400 |
|---|---|---|
| committer | elijah-thomas774 <elijahthomas774@gmail.com> | 2025-09-16 22:32:06 -0400 |
| commit | d591961dbd14bfe723dbd6ba542b169e472744da (patch) | |
| tree | 5bee1f9e1a1782530864461fc77cb5db52aecbed /src/d/d_base.cpp | |
| parent | ed1df7c7ab7267ce8b1fb1fb658d0172995c85b9 (diff) | |
dAcObjBase var -> mVar
Diffstat (limited to 'src/d/d_base.cpp')
| -rw-r--r-- | src/d/d_base.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/d/d_base.cpp b/src/d/d_base.cpp index ac9a7810..44a9718f 100644 --- a/src/d/d_base.cpp +++ b/src/d/d_base.cpp @@ -5,7 +5,7 @@ u32 dBase_c::s_DrawControlFlags; u32 dBase_c::s_NextExecuteControlFlags; dBase_c::dBase_c() : fBase_c() { - mBaseProperties = (*fProfile::sProfileList)[profile_name]->mBaseProperties; + mBaseProperties = (*fProfile::sProfileList)[mProfileName]->mBaseProperties; } void dBase_c::postDraw(fBase_c::MAIN_STATE_e status) { @@ -53,7 +53,7 @@ void dBase_c::resetFlags() { } bool dBase_c::isActorPlayer() { - return profile_name == fProfile::PLAYER; + return mProfileName == fProfile::PLAYER; } int dBase_c::loadAsyncCallback() { |
