summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/ui/miscmenu.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/ui/miscmenu.cpp')
-rw-r--r--src/emu/ui/miscmenu.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/emu/ui/miscmenu.cpp b/src/emu/ui/miscmenu.cpp
index 0a4c428bd69..89bf4182ffd 100644
--- a/src/emu/ui/miscmenu.cpp
+++ b/src/emu/ui/miscmenu.cpp
@@ -236,13 +236,13 @@ void ui_menu_bookkeeping::populate()
/* show total time first */
if (prevtime.seconds() >= (60 * 60))
- stream_format(tempstring, _("Uptime: %1$d:%2$02d:%3$02d\n\n"), prevtime.seconds() / (60 * 60), (prevtime.seconds() / 60) % 60, prevtime.seconds() % 60);
+ util::stream_format(tempstring, _("Uptime: %1$d:%2$02d:%3$02d\n\n"), prevtime.seconds() / (60 * 60), (prevtime.seconds() / 60) % 60, prevtime.seconds() % 60);
else
- stream_format(tempstring, _("Uptime: %1$d:%2$02d\n\n"), (prevtime.seconds() / 60) % 60, prevtime.seconds() % 60);
+ util::stream_format(tempstring, _("Uptime: %1$d:%2$02d\n\n"), (prevtime.seconds() / 60) % 60, prevtime.seconds() % 60);
/* show tickets at the top */
if (tickets > 0)
- stream_format(tempstring, _("Tickets dispensed: %1$d\n\n"), tickets);
+ util::stream_format(tempstring, _("Tickets dispensed: %1$d\n\n"), tickets);
/* loop over coin counters */
for (ctrnum = 0; ctrnum < COIN_COUNTERS; ctrnum++)
@@ -252,7 +252,7 @@ void ui_menu_bookkeeping::populate()
/* display the coin counter number */
/* display how many coins */
/* display whether or not we are locked out */
- stream_format(tempstring,
+ util::stream_format(tempstring,
(count == 0) ? _("Coin %1$c: NA%3$s\n") : _("Coin %1$c: %2$d%3$s\n"),
ctrnum + 'A',
count,
@@ -767,7 +767,7 @@ void ui_menu_export::handle()
// iterate through drivers and output the info
while (drvlist.next())
if ((drvlist.driver().flags & MACHINE_NO_STANDALONE) == 0)
- stream_format(buffer, "%-18s\"%s\"\n", drvlist.driver().name, drvlist.driver().description);
+ util::stream_format(buffer, "%-18s\"%s\"\n", drvlist.driver().name, drvlist.driver().description);
file.puts(buffer.str().c_str());
file.close();
machine().popmessage(_("%s.txt saved under ui folder."), filename.c_str());
n class='deletions'>-3/+3 * running_device -> device_t Aaron Giles2010-12-311-3/+3 * MDRV_* -> MCFG_* Aaron Giles2010-12-311-28/+28 * Added include files for all remaining drivers with multiple source files. Aaron Giles2010-09-021-8/+1 * Changed driver_data objects to be devices. Replaced the driver_data_t Aaron Giles2010-09-021-1/+1 * Changed the MACHINE_DRIVER_* macros, as follows: Aaron Giles2010-09-011-2/+2 * MAMEdev kant spel (Ubuntu/Canonical cares about this) [wallyweek] R. Belmont2010-07-081-4/+4 * Time to kill off some deadwood. Aaron Giles2010-07-071-6/+6 * Correct a long-standing design flaw: device configuration state Aaron Giles2010-01-181-3/+3 * Bulk driver.h -> emu.h switch. Aaron Giles2010-01-101-1/+1 * Results of running the latest srcclean.