From 67663501d7a646a5d4f43fc9c054d99bf3ce2544 Mon Sep 17 00:00:00 2001 From: Miodrag Milanovic Date: Wed, 16 Apr 2014 08:04:20 +0000 Subject: Moved eminline and related files into /src/osd since it's system related (nw) Moved delegates into /src/lib/util to enable usage of delegates in other project parts Moved mame_printf_* calls into /src/osd/osdcore.c and renamed them to osd_printf_* Changed mess.mak to display compilation of ymmu100.ppm nicely --- src/osd/sdl/output.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/osd/sdl/output.c') diff --git a/src/osd/sdl/output.c b/src/osd/sdl/output.c index 8ce46cbabfb..3f6b75372d9 100644 --- a/src/osd/sdl/output.c +++ b/src/osd/sdl/output.c @@ -82,13 +82,13 @@ void sdloutput_init(running_machine &machine) if (fildes < 0) { output = NULL; - mame_printf_verbose("output: unable to open output notifier file %s\n", SDLMAME_OUTPUT); + osd_printf_verbose("output: unable to open output notifier file %s\n", SDLMAME_OUTPUT); } else { output = fdopen(fildes, "w"); - mame_printf_verbose("output: opened output notifier file %s\n", SDLMAME_OUTPUT); + osd_printf_verbose("output: opened output notifier file %s\n", SDLMAME_OUTPUT); fprintf(output, "MAME " PID_FMT " START %s\n", osd_getpid(), machine.system().name); fflush(output); } @@ -109,7 +109,7 @@ static void sdloutput_exit(running_machine &machine) fflush(output); fclose(output); output = NULL; - mame_printf_verbose("output: closed output notifier file\n"); + osd_printf_verbose("output: closed output notifier file\n"); } } -- cgit v1.2.3-70-g09d2