diff --git a/Source/Project64-core/N64System/Mips/Eeprom.cpp b/Source/Project64-core/N64System/Mips/Eeprom.cpp index 8982d25b5..60557d0d5 100644 --- a/Source/Project64-core/N64System/Mips/Eeprom.cpp +++ b/Source/Project64-core/N64System/Mips/Eeprom.cpp @@ -183,6 +183,10 @@ void CEeprom::ReadFrom(uint8_t * Buffer, int32_t line) void CEeprom::WriteTo(uint8_t * Buffer, int32_t line) { + if (m_ReadOnly) + { + return; + } int32_t i; if (!m_File.IsOpen())