summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2019-04-12 07:42:35 -0400
committer AJR <ajrhacker@users.noreply.github.com>2019-04-12 07:42:35 -0400
commit0fb11df50a00e2367da27016e0734f3c17aa966f (patch)
treeee13890f95783e7c20e4e27e876f2ba22786c721
parent35d0069a484fbf3bd5dc37f84cd2cbb5bf846dfb (diff)
bus/nes/mmc5.cpp: Add missing save_item call (nw)
-rw-r--r--src/devices/bus/nes/mmc5.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/devices/bus/nes/mmc5.cpp b/src/devices/bus/nes/mmc5.cpp
index 62660ef5394..0cceec064d2 100644
--- a/src/devices/bus/nes/mmc5.cpp
+++ b/src/devices/bus/nes/mmc5.cpp
@@ -70,9 +70,10 @@ void nes_exrom_device::device_start()
save_item(NAME(m_floodattr));
save_item(NAME(m_prg_mode));
save_item(NAME(m_chr_mode));
- save_item(NAME(m_wram_base));
save_item(NAME(m_wram_protect_1));
save_item(NAME(m_wram_protect_2));
+ save_item(NAME(m_exram_control));
+ save_item(NAME(m_wram_base));
save_item(NAME(m_vrom_bank));
save_item(NAME(m_last_chr));
save_item(NAME(m_ex1_chr));