Project64: Initialize eeprom to 0xFF instead of 0x00
This commit is contained in:
parent
87f96afeee
commit
814018c78f
|
@ -15,8 +15,7 @@ CEeprom::CEeprom (bool ReadOnly):
|
||||||
m_ReadOnly(ReadOnly),
|
m_ReadOnly(ReadOnly),
|
||||||
m_hFile(NULL)
|
m_hFile(NULL)
|
||||||
{
|
{
|
||||||
memset(m_EEPROM,0,sizeof(m_EEPROM));
|
memset(m_EEPROM,0xFF,sizeof(m_EEPROM));
|
||||||
//LoadEeprom();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
CEeprom::~CEeprom (void) {
|
CEeprom::~CEeprom (void) {
|
||||||
|
|
Loading…
Reference in New Issue