summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/cpu/m6502/m65ce02.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/cpu/m6502/m65ce02.h')
-rw-r--r--src/emu/cpu/m6502/m65ce02.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/cpu/m6502/m65ce02.h b/src/emu/cpu/m6502/m65ce02.h
index df715d72e9c..df0f1fbd996 100644
--- a/src/emu/cpu/m6502/m65ce02.h
+++ b/src/emu/cpu/m6502/m65ce02.h
@@ -63,7 +63,7 @@ protected:
virtual void device_reset();
virtual void state_import(const device_state_entry &entry);
virtual void state_export(const device_state_entry &entry);
- virtual void state_string_export(const device_state_entry &entry, astring &str);
+ virtual void state_string_export(const device_state_entry &entry, std::string &str);
inline void dec_SP_ce() { if(P & F_E) SP = set_l(SP, SP-1); else SP--; }
inline void inc_SP_ce() { if(P & F_E) SP = set_l(SP, SP+1); else SP++; }