diff options
Diffstat (limited to 'src/emu/ui/ui.h')
-rw-r--r-- | src/emu/ui/ui.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/emu/ui/ui.h b/src/emu/ui/ui.h index e63b00339df..3f74eac6097 100644 --- a/src/emu/ui/ui.h +++ b/src/emu/ui/ui.h @@ -93,7 +93,7 @@ enum typedef UINT32 (*ui_callback)(running_machine &, render_container *, UINT32); -typedef INT32 (*slider_update)(running_machine &machine, void *arg, astring *str, INT32 newval); +typedef INT32(*slider_update)(running_machine &machine, void *arg, std::string *str, INT32 newval); struct slider_state { @@ -160,7 +160,7 @@ public: void request_quit(); // print the game info string into a buffer - astring &game_info_astring(astring &str); + std::string &game_info_astring(std::string &str); // slider controls const slider_state *get_slider_list(void); @@ -185,8 +185,8 @@ private: bool m_mouse_show; // text generators - astring &disclaimer_string(astring &buffer); - astring &warnings_string(astring &buffer); + std::string &disclaimer_string(std::string &buffer); + std::string &warnings_string(std::string &buffer); // UI handlers static UINT32 handler_messagebox(running_machine &machine, render_container *container, UINT32 state); |