diff options
author | 2024-02-25 02:25:54 +1100 | |
---|---|---|
committer | 2024-02-25 02:25:54 +1100 | |
commit | 334ec12e0043ef939be418283235e3dbe5a005fe (patch) | |
tree | d3fd47843731122688fe3148aef0895c067a1b32 /src/emu/machine.cpp | |
parent | d98993d7ff92cf07b9378bd79f358e37dc8e2084 (diff) |
emu/save.cpp: Made illegal save state registrations always fatal. (#12054)
Diffstat (limited to 'src/emu/machine.cpp')
-rw-r--r-- | src/emu/machine.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/emu/machine.cpp b/src/emu/machine.cpp index b70eecba287..573c1b9e095 100644 --- a/src/emu/machine.cpp +++ b/src/emu/machine.cpp @@ -890,10 +890,6 @@ void running_machine::handle_saveload() // handle the result switch (saverr) { - case STATERR_ILLEGAL_REGISTRATIONS: - popmessage("Error: Unable to %s state %s %s due to illegal registrations. See error.log for details.", opname, preposname, m_saveload_pending_file); - break; - case STATERR_INVALID_HEADER: popmessage("Error: Unable to %s state %s %s due to an invalid header. Make sure the save state is correct for this system.", opname, preposname, m_saveload_pending_file); break; |