diff options
| author | 2021-04-20 02:12:47 -0700 | |
|---|---|---|
| committer | 2021-04-20 02:12:47 -0700 | |
| commit | 8d047a8f0dcfb1bdaa4dcf87c001a30ebcc7cca8 (patch) | |
| tree | f0ca7134fd27aa3d9967195dd8946be542c749cc /src/emu/dirom.ipp | |
| parent | 7e33cb29e24b2ce9c4c3bf7b1d7b8784a93f3172 (diff) | |
Better handling of null/missing items. More consistent error handling. Reduced compression to default to speed up saves. Optimized simple binary saves as well. Device interfaces now have automatic containers. Fixed duplicate entry detection. Added logic to parse an item we're skipping. Added detection of missing/duplicate items from input JSON. Fixed timing for save/load.save-experiments
Diffstat (limited to 'src/emu/dirom.ipp')
| -rw-r--r-- | src/emu/dirom.ipp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/emu/dirom.ipp b/src/emu/dirom.ipp index f6460e84d33..b734951d8c8 100644 --- a/src/emu/dirom.ipp +++ b/src/emu/dirom.ipp @@ -136,8 +136,7 @@ void device_rom_interface<AddrWidth, DataWidth, AddrShift, Endian>::interface_re { device_memory_interface::interface_register_save(save); - save_registrar(save, "rom") - .reg(NAME(m_cur_bank)) + save.reg(NAME(m_cur_bank)) .reg(NAME(m_bank_count)); } |
