mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-13 07:49:19 +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)
|
||||
return;
|
||||
}
|
||||
((Memcard::GCMBlock*)m_last_block_address)->Erase();
|
||||
std::memset(m_last_block_address, 0xFF, Memcard::BLOCK_SIZE);
|
||||
}
|
||||
|
||||
inline void GCMemcardDirectory::SyncSaves()
|
||||
|
Loading…
x
Reference in New Issue
Block a user