summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/distate.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/distate.h')
-rw-r--r--src/emu/distate.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/emu/distate.h b/src/emu/distate.h
index b8adb436f1c..f762bd9fb13 100644
--- a/src/emu/distate.h
+++ b/src/emu/distate.h
@@ -166,7 +166,7 @@ protected:
virtual void state_string_export(const device_state_entry &entry, std::string &str);
// internal operation overrides
- virtual void interface_post_start();
+ virtual void interface_post_start() override;
// find the entry for a given index
const device_state_entry *state_find_entry(int index);
@@ -197,7 +197,7 @@ typedef device_interface_iterator<device_state_interface> state_interface_iterat
inline offs_t device_t::safe_pc() const
{
- return (m_state != NULL) ? m_state->pc() : 0;
+ return (m_state != nullptr) ? m_state->pc() : 0;
}
@@ -208,7 +208,7 @@ inline offs_t device_t::safe_pc() const
inline offs_t device_t::safe_pcbase() const
{
- return (m_state != NULL) ? m_state->pcbase() : 0;
+ return (m_state != nullptr) ? m_state->pcbase() : 0;
}