diff options
author | 2016-10-24 16:54:01 +0100 | |
---|---|---|
committer | 2016-10-24 16:54:01 +0100 | |
commit | 3bec26611e2fcfe667674d36f40f39a853cbe5cb (patch) | |
tree | 4a729380365f7cddc2c1a309367e67efac81128c /src/devices/cpu/scmp | |
parent | aa2adc489c344dfae8dbb206695b1be8ef3ee27f (diff) |
add virtual for consistency (nw)
Diffstat (limited to 'src/devices/cpu/scmp')
-rw-r--r-- | src/devices/cpu/scmp/scmp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/cpu/scmp/scmp.h b/src/devices/cpu/scmp/scmp.h index 5e115f778b1..9706b4167c0 100644 --- a/src/devices/cpu/scmp/scmp.h +++ b/src/devices/cpu/scmp/scmp.h @@ -53,7 +53,7 @@ protected: virtual const address_space_config *memory_space_config(address_spacenum spacenum = AS_0) const override { return (spacenum == AS_PROGRAM) ? &m_program_config : nullptr; } // device_state_interface overrides - 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) const override; // device_disasm_interface overrides virtual uint32_t disasm_min_opcode_bytes() const override { return 1; } |