mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-07-13 21:45:52 +00:00
Match CMemoryCardDriver::StartFileRead
This commit is contained in:
parent
8fd374a0bb
commit
50d7b3633f
@ -549,7 +549,19 @@ void CMemoryCardDriver::StartFileDeleteAlt() {
|
|||||||
UpdateFileDeleteAlt(result);
|
UpdateFileDeleteAlt(result);
|
||||||
}
|
}
|
||||||
|
|
||||||
void CMemoryCardDriver::StartFileRead() {}
|
void CMemoryCardDriver::StartFileRead() {
|
||||||
|
x14_error = kE_OK;
|
||||||
|
x10_state = kS_FileRead;
|
||||||
|
ECardResult result = x100_mcFileInfos[x194_fileIdx].second.Open();
|
||||||
|
if (result != kCR_READY) {
|
||||||
|
UpdateFileRead(result);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
result = x100_mcFileInfos[x194_fileIdx].second.StartRead();
|
||||||
|
if (result != kCR_READY)
|
||||||
|
UpdateFileRead(result);
|
||||||
|
}
|
||||||
|
|
||||||
void CMemoryCardDriver::StartFileCreate() {}
|
void CMemoryCardDriver::StartFileCreate() {}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user