mirror of https://github.com/PrimeDecomp/prime.git
parent
71e610936b
commit
1706935abb
|
@ -23,8 +23,8 @@ public:
|
|||
}
|
||||
// TODO check
|
||||
auto_ptr& operator=(const auto_ptr& other) {
|
||||
if (this != &other) {
|
||||
if (x0_has != false) {
|
||||
if (&other != this) {
|
||||
if (x0_has) {
|
||||
delete x4_item;
|
||||
}
|
||||
x0_has = other.x0_has;
|
||||
|
|
|
@ -706,7 +706,9 @@ void CMemoryCardDriver::ReadFinished() {
|
|||
}
|
||||
}
|
||||
|
||||
void CMemoryCardDriver::EraseFileSlot(int) {}
|
||||
void CMemoryCardDriver::EraseFileSlot(int saveIdx) {
|
||||
xe4_fileSlots[saveIdx] = nullptr;
|
||||
}
|
||||
|
||||
void CMemoryCardDriver::BuildNewFileSlot(int) {}
|
||||
|
||||
|
|
Loading…
Reference in New Issue