summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/mame.c
diff options
context:
space:
mode:
author Aaron Giles <aaron@aarongiles.com>2008-01-03 16:11:57 +0000
committer Aaron Giles <aaron@aarongiles.com>2008-01-03 16:11:57 +0000
commitf97d37b7e039eea768e2661d0a9ebb9b0ea59076 (patch)
tree404781c66276c30bce79bf1a854918d2e3599195 /src/emu/mame.c
parenta893708c3dda8bdfb21eb818c45dfcc4ef91ad19 (diff)
Spacing fixes and a version bump to 0.122u3.mame0122u3
Diffstat (limited to 'src/emu/mame.c')
-rw-r--r--src/emu/mame.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/mame.c b/src/emu/mame.c
index f83789e7a1d..95abf4b74b1 100644
--- a/src/emu/mame.c
+++ b/src/emu/mame.c
@@ -1158,13 +1158,13 @@ void CLIB_DECL popmessage(const char *format, ...)
/* if the format is NULL, it is a signal to clear the popmessage */
if (format == NULL)
ui_popup_time(0, " ");
-
+
/* otherwise, generate the buffer and call the UI to display the message */
else
{
extern void CLIB_DECL ui_popup(const char *format, ...) ATTR_PRINTF(1,2);
va_list arg;
-
+
/* dump to the buffer */
va_start(arg, format);
vsnprintf(giant_string_buffer, GIANT_STRING_BUFFER_SIZE, format, arg);