mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-07-05 17:15:53 +00:00
Match CMemoryCardDriver::StartMountCard
Former-commit-id: e5832f4854ab1aeb3103f140325cefd81ffbc132
This commit is contained in:
parent
3218c6bd2f
commit
62e0ee072e
@ -55,6 +55,7 @@ public:
|
|||||||
~CMemoryCardSys();
|
~CMemoryCardSys();
|
||||||
|
|
||||||
static ECardResult GetResultCode(int);
|
static ECardResult GetResultCode(int);
|
||||||
|
static ECardResult MountCard(EMemoryCardPort port);
|
||||||
static ProbeResults IsMemoryCardInserted(EMemoryCardPort);
|
static ProbeResults IsMemoryCardInserted(EMemoryCardPort);
|
||||||
static ECardResult GetSerialNo(EMemoryCardPort port, long long& serialOut);
|
static ECardResult GetSerialNo(EMemoryCardPort port, long long& serialOut);
|
||||||
static void UnmountCard(EMemoryCardPort);
|
static void UnmountCard(EMemoryCardPort);
|
||||||
|
@ -411,7 +411,13 @@ void CMemoryCardDriver::UpdateCardProbe() {
|
|||||||
// }
|
// }
|
||||||
}
|
}
|
||||||
|
|
||||||
void CMemoryCardDriver::StartMountCard() {}
|
void CMemoryCardDriver::StartMountCard() {
|
||||||
|
x10_state = kS_CardMount;
|
||||||
|
x14_error = kE_OK;
|
||||||
|
ECardResult result = CMemoryCardSys::MountCard(x0_cardPort);
|
||||||
|
if (result != kCR_READY)
|
||||||
|
UpdateMountCard(result);
|
||||||
|
}
|
||||||
|
|
||||||
void CMemoryCardDriver::StartCardCheck() {}
|
void CMemoryCardDriver::StartCardCheck() {}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user