Skip to content

Commit

Permalink
ebiFileSelectMgr fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
HeartPiece44 committed Sep 20, 2023
1 parent c0115d8 commit d32c6bf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions include/ebi/FileSelect.h
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,8 @@ struct FSMState_CardRequest : public FSMState {

virtual void do_init(TMgr*, Game::StateArg*); // _20
virtual void do_exec(TMgr*); // _24
virtual bool do_cardRequest(TMgr*); // _28
virtual void do_transitCardReady(TMgr*); // _2C
virtual bool do_cardRequest(TMgr*) = 0; // _28
virtual void do_transitCardReady(TMgr*) = 0; // _2C
virtual void do_transitCardNoCard(TMgr*); // _30
virtual void do_transitCardIOError(TMgr*); // _34
virtual void do_transitCardWrongDevice(TMgr*); // _38
Expand Down
2 changes: 1 addition & 1 deletion src/plugProjectEbisawaU/ebiFileSelectMgr.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,7 @@ void FSMState_CardError::do_exec(TMgr* mgr)
mgr->start();
break;
default:
JUT_PANICLINE(342, " mgr->mCardErrorMgr->getEnd=%d ってありえない!\n", mgr->mCardErrorMgr.mEndStat);
JUT_PANICLINE(342, " mgr->mCardErrorMgr->getEnd=%d ってありえない!\n", mgr->mCardErrorMgr.mEndStat);
JUT_PANICLINE(343, "P2Assert");
}
}
Expand Down

0 comments on commit d32c6bf

Please sign in to comment.