diff options
Diffstat (limited to 'src/emu/cpu/uml.h')
-rw-r--r-- | src/emu/cpu/uml.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/cpu/uml.h b/src/emu/cpu/uml.h index ab94a949c98..6d1e6c2d89a 100644 --- a/src/emu/cpu/uml.h +++ b/src/emu/cpu/uml.h @@ -247,7 +247,7 @@ namespace uml private: // internal state drccodeptr * m_code; // pointer in the cache to the associated code - astring m_string; // pointer to string attached to handle + std::string m_string; // pointer to string attached to handle code_handle * m_next; // link to next handle in the list drcuml_state & m_drcuml; // pointer to owning object }; @@ -409,7 +409,7 @@ namespace uml void set_mapvar(int paramnum, UINT32 value) { assert(paramnum < m_numparams); assert(m_param[paramnum].is_mapvar()); m_param[paramnum] = value; } // misc - const char *disasm(astring &str, drcuml_state *drcuml = NULL) const; + const char *disasm(std::string &str, drcuml_state *drcuml = NULL) const; UINT8 input_flags() const; UINT8 output_flags() const; UINT8 modified_flags() const; |