diff options
Diffstat (limited to 'src/devices/cpu/sh4')
-rw-r--r-- | src/devices/cpu/sh4/sh4.cpp | 2 | ||||
-rw-r--r-- | src/devices/cpu/sh4/sh4.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/cpu/sh4/sh4.cpp b/src/devices/cpu/sh4/sh4.cpp index fc67b4d9d86..e0835b1f9c0 100644 --- a/src/devices/cpu/sh4/sh4.cpp +++ b/src/devices/cpu/sh4/sh4.cpp @@ -4447,7 +4447,7 @@ void sh34_base_device::state_export(const device_state_entry &entry) } } -void sh34_base_device::state_string_export(const device_state_entry &entry, std::string &str) const +void sh34_base_device::state_string_export(const device_state_entry &entry, std::string &str) { #ifdef LSB_FIRST UINT8 fpu_xor = m_fpu_pr; diff --git a/src/devices/cpu/sh4/sh4.h b/src/devices/cpu/sh4/sh4.h index badaacd4558..bba3483b9a1 100644 --- a/src/devices/cpu/sh4/sh4.h +++ b/src/devices/cpu/sh4/sh4.h @@ -220,7 +220,7 @@ protected: // device_state_interface overrides virtual void state_import(const device_state_entry &entry) override; virtual void state_export(const device_state_entry &entry) override; - virtual void state_string_export(const device_state_entry &entry, std::string &str) const override; + virtual void state_string_export(const device_state_entry &entry, std::string &str) override; // device_disasm_interface overrides virtual UINT32 disasm_min_opcode_bytes() const override { return 2; } |