diff options
| author | Caroline Madsen <69010899+randomsalience@users.noreply.github.com> | 2024-10-31 20:36:11 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-10-31 17:36:11 -0700 |
| commit | 09423b6fa00029d0325cbade59c78ae42f1014de (patch) | |
| tree | 15c444d2b60c559bbfd15385a4cfa83b8fe33521 /src/d/d_s_play.cpp | |
| parent | 30777a85b5357a60f0d57f9127ff4e04d3b2bdd5 (diff) | |
more misc. cleanup (#2232)
Diffstat (limited to 'src/d/d_s_play.cpp')
| -rw-r--r-- | src/d/d_s_play.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/d/d_s_play.cpp b/src/d/d_s_play.cpp index 56c0b741e1..87b3b61816 100644 --- a/src/d/d_s_play.cpp +++ b/src/d/d_s_play.cpp @@ -43,8 +43,6 @@ static int phase_5(dScnPly_c*); static int phase_6(dScnPly_c*); static int phase_compleate(void*); -extern "C" s8 func_80252E70(s8*); - /* 804510F8-80451100 0005F8 0008+00 2/2 0/0 0/0 .sbss resPhase */ static request_of_phase_process_class resPhase[1]; @@ -76,7 +74,7 @@ s8 dScnPly_c::calcPauseTimer() { nextPauseTimer = 0; return pauseTimer; } else { - return func_80252E70(&pauseTimer); // cLib_calcTimer<s8> : 80252E70 + return cLib_calcTimer<s8>(&pauseTimer); } } @@ -776,4 +774,4 @@ scene_process_profile_definition g_profile_OPENING_SCENE = { 0, // mParameters &g_fopScn_Method.mBase, // sub_method (process_method_class*)&l_dScnPly_Method, // mpMtd -};
\ No newline at end of file +}; |
