summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/sh4
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2016-01-11 09:58:36 +0100
committer Miodrag Milanovic <mmicko@gmail.com>2016-01-11 09:58:36 +0100
commite96fd34dd817f1113daf9e6b099a8f40cfd1ed6d (patch)
tree47946e58943bae27864f42c807957876231a96ad /src/devices/cpu/sh4
parent02fb0d20846a4e55a06a9e3369a077a40ff8cb58 (diff)
remove const (nw)
Diffstat (limited to 'src/devices/cpu/sh4')
-rw-r--r--src/devices/cpu/sh4/sh4.cpp2
-rw-r--r--src/devices/cpu/sh4/sh4.h2
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; }