summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/nvram.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/nvram.h')
-rw-r--r--src/devices/machine/nvram.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/machine/nvram.h b/src/devices/machine/nvram.h
index 6f575d998d2..f497a02976e 100644
--- a/src/devices/machine/nvram.h
+++ b/src/devices/machine/nvram.h
@@ -57,7 +57,7 @@ protected:
virtual void nvram_default() override;
virtual void nvram_read(emu_file &file) override;
virtual void nvram_write(emu_file &file) override;
- virtual bool nvram_pre_write() override { return m_base && m_length; }
+ virtual bool nvram_can_write() override { return m_base && m_length; }
// internal helpers
void determine_final_base();