diff options
| author | TakaRikka <38417346+TakaRikka@users.noreply.github.com> | 2024-03-19 04:31:53 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-03-19 13:31:53 +0200 |
| commit | 25d51079a315a7e8e1b745f06ca857b2c48cf532 (patch) | |
| tree | 70108224ec24446fc9cd44a6cfaed83bdd23c2ab /src/d/d_scope.cpp | |
| parent | 38e0f8927a7f14af61748d0226b4eb89513cb2a9 (diff) | |
remove "duplicated" inlines (#2099)
* fix f_op_actor_mng inlines
* fix f_pc inlines
* fix d_a_alink weak func signatures
* fix d_com_inf_game inlines
* fix some more inlines
* fix rest of player inlines
* m_Do / JSystem inlines fixed
* fix upstream changes
Diffstat (limited to 'src/d/d_scope.cpp')
| -rw-r--r-- | src/d/d_scope.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/d/d_scope.cpp b/src/d/d_scope.cpp index 26213d647d..cc8b9a58aa 100644 --- a/src/d/d_scope.cpp +++ b/src/d/d_scope.cpp @@ -216,7 +216,7 @@ int dScope_c::_execute(u32) { if (mProcess != PROC_CLOSE) { dComIfGp_setCStickStatusForce(61, 10, 3); - if (i_dComIfGp_checkPlayerStatus0(0, 0x1000)) { + if (dComIfGp_checkPlayerStatus0(0, 0x1000)) { dComIfGp_setRStatusForce(0x11, 3); } } @@ -250,7 +250,7 @@ void dScope_c::draw() { f32 temp_f30 = mHeight * temp_f1; u8 alpha = mAlpha * 255.0f; - if (i_dComIfGp_checkPlayerStatus0(0, 0x1000)) { + if (dComIfGp_checkPlayerStatus0(0, 0x1000)) { J2DDrawLine(304.0f, mDoGph_gInf_c::getMinYF(), 304.0f, mDoGph_gInf_c::getMaxYF(), JUtility::TColor(255, 0, 0, alpha), 6); J2DDrawLine(mDoGph_gInf_c::getMinXF(), 224.0f, mDoGph_gInf_c::getMaxXF(), 224.0f, |
