diff options
Diffstat (limited to 'src/emu/distate.cpp')
-rw-r--r-- | src/emu/distate.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/distate.cpp b/src/emu/distate.cpp index 9986b261e93..04343219f55 100644 --- a/src/emu/distate.cpp +++ b/src/emu/distate.cpp @@ -436,7 +436,7 @@ UINT64 device_state_interface::state_int(int index) // pieces of indexed state as a string //------------------------------------------------- -std::string device_state_interface::state_string(int index) const +std::string device_state_interface::state_string(int index) { // NULL or out-of-range entry returns bogus string const device_state_entry *entry = state_find_entry(index); @@ -590,7 +590,7 @@ void device_state_interface::state_string_import(const device_state_entry &entry // written to perform any post-processing //------------------------------------------------- -void device_state_interface::state_string_export(const device_state_entry &entry, std::string &str) const +void device_state_interface::state_string_export(const device_state_entry &entry, std::string &str) { // do nothing by default } |