summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/lh5801/lh5801.h
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/lh5801/lh5801.h
parent02fb0d20846a4e55a06a9e3369a077a40ff8cb58 (diff)
remove const (nw)
Diffstat (limited to 'src/devices/cpu/lh5801/lh5801.h')
-rw-r--r--src/devices/cpu/lh5801/lh5801.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/cpu/lh5801/lh5801.h b/src/devices/cpu/lh5801/lh5801.h
index fe6f3c44f63..fd28df91ae0 100644
--- a/src/devices/cpu/lh5801/lh5801.h
+++ b/src/devices/cpu/lh5801/lh5801.h
@@ -90,7 +90,7 @@ protected:
virtual const address_space_config *memory_space_config(address_spacenum spacenum = AS_0) const override { return (spacenum == AS_PROGRAM) ? &m_program_config : ( (spacenum == AS_IO) ? &m_io_config : nullptr ); }
// device_state_interface overrides
- 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 1; }