summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/spec_snqk.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/spec_snqk.cpp')
-rw-r--r--src/mame/machine/spec_snqk.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/machine/spec_snqk.cpp b/src/mame/machine/spec_snqk.cpp
index da0099b1d64..543619099d6 100644
--- a/src/mame/machine/spec_snqk.cpp
+++ b/src/mame/machine/spec_snqk.cpp
@@ -53,8 +53,8 @@ static void log_quickload(running_machine &machine, const char *type, UINT32 sta
state->logerror("Loading %04X bytes of RAM at %04X\n", length, start);
- stream_format(tempstring,"Quickload type: %s Length: %d bytes\n", type, length);
- stream_format(tempstring,"Start: 0x%04X End: 0x%04X Exec: ", start, start + length - 1);
+ util::stream_format(tempstring, "Quickload type: %s Length: %d bytes\n", type, length);
+ util::stream_format(tempstring, "Start: 0x%04X End: 0x%04X Exec: ", start, start + length - 1);
state->logerror("Quickload loaded.\n");
if (!core_stricmp(exec_format, EXEC_NA))
@@ -64,10 +64,10 @@ static void log_quickload(running_machine &machine, const char *type, UINT32 sta
state->logerror("Execution can resume with ");
state->logerror(exec_format, exec);
state->logerror("\n");
- stream_format(tempstring,exec_format, exec);
+ util::stream_format(tempstring, exec_format, exec);
}
- machine.ui().popup_time(10, "%s", tempstring.str().c_str());
+ machine.ui().popup_time(10, "%s", tempstring.str());
}
/*******************************************************************