mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-19 02:36:27 +01:00
GCMemcardDirectory: Avoid undefined behavior in ClearBlock().
This commit is contained in:
parent
131eb9107b
commit
b175c203e4
@ -430,7 +430,7 @@ void GCMemcardDirectory::ClearBlock(u32 address)
|
|||||||
if (m_last_block == -1)
|
if (m_last_block == -1)
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
((Memcard::GCMBlock*)m_last_block_address)->Erase();
|
std::memset(m_last_block_address, 0xFF, Memcard::BLOCK_SIZE);
|
||||||
}
|
}
|
||||||
|
|
||||||
inline void GCMemcardDirectory::SyncSaves()
|
inline void GCMemcardDirectory::SyncSaves()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user