diff options
| author | robojumper <robojumper@gmail.com> | 2025-08-02 09:20:00 +0200 |
|---|---|---|
| committer | robojumper <robojumper@gmail.com> | 2025-08-02 09:20:02 +0200 |
| commit | 0be5f872286ad600dd0485da377cf8bdb7542526 (patch) | |
| tree | a6d2b50b1f630d3b59393a0bc5b4881126fb1851 /src/d/d_reset.cpp | |
| parent | d153cbc0ede10dd24a32e89faf81c8fb839ee23a (diff) | |
d_s_boot progress
Diffstat (limited to 'src/d/d_reset.cpp')
| -rw-r--r-- | src/d/d_reset.cpp | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/d/d_reset.cpp b/src/d/d_reset.cpp index 15331958..840df09c 100644 --- a/src/d/d_reset.cpp +++ b/src/d/d_reset.cpp @@ -329,13 +329,13 @@ void Manage_c::ModeProc_SoftReset() { if (dScBoot_c::GetInstance()) { if (mpFader->getStatus() == EGG::ColorFader::STATUS_PREPARE_IN) { if (dScBoot_c::GetInstance()->getField_0x5E4()) { - dScBoot_c::GetInstance()->setField_0x5E4(0); + dScBoot_c::GetInstance()->setField_0x5E4(false); mpFader->setStatus(EGG::ColorFader::STATUS_PREPARE_OUT); ModeRequest(Normal); dSndPlayerMgr_c::GetInstance()->fn_8035E310(); } else { if (field_0x66) { - dScBoot_c::GetInstance()->setField_0x5E3(1); + dScBoot_c::GetInstance()->setField_0x5E3(true); dDvdUnk::FontUnk::GetInstance()->fn_800529B0(); dSndPlayerMgr_c::GetInstance()->fn_8035E6E0(); @@ -343,8 +343,8 @@ void Manage_c::ModeProc_SoftReset() { if (dDvdUnk::FontUnk::GetInstance()->isNandError() || dDvdUnk::FontUnk::GetInstance()->getNandError() != NandResultTracker::ERR_CAT_NONE || SaveMgr::GetInstance()->getCheckForFreeSpaceResult()) { - dScBoot_c::GetInstance()->setField_0x5E3(0); - dScBoot_c::GetInstance()->setField_0x5E2(1); + dScBoot_c::GetInstance()->setField_0x5E3(false); + dScBoot_c::GetInstance()->setField_0x5E2(true); dDvdUnk::FontUnk::GetInstance()->clearNandError(); } dDvdUnk::FontUnk::GetInstance()->fn_80052A20(); @@ -553,7 +553,8 @@ void Manage_c::CleanUpLC() { void Manage_c::MotorCancelOn() { for (int i = 0; i < 4; i++) { - mPad::g_core[--++i]->stopRumbleMgr(); + // TODO: Fakematch + mPad::getCore(--++i)->stopRumbleMgr(); } dRumble_c::stop(-1); } |
