mirror of
https://github.com/holub/mame
synced 2025-07-01 16:19:38 +03:00
typo fix from qmc2 (no whatsnew)
This commit is contained in:
parent
7ac70e7ee5
commit
83c7f8c03c
@ -82,13 +82,13 @@ void sdloutput_init(running_machine &machine)
|
||||
if (fildes < 0)
|
||||
{
|
||||
output = NULL;
|
||||
mame_printf_verbose("ouput: unable to open output notifier file %s\n", SDLMAME_OUTPUT);
|
||||
mame_printf_verbose("output: unable to open output notifier file %s\n", SDLMAME_OUTPUT);
|
||||
}
|
||||
else
|
||||
{
|
||||
output = fdopen(fildes, "w");
|
||||
|
||||
mame_printf_verbose("ouput: opened output notifier file %s\n", SDLMAME_OUTPUT);
|
||||
mame_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("ouput: closed output notifier file\n");
|
||||
mame_printf_verbose("output: closed output notifier file\n");
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user