Previous 199869 Revisions Next

r19447 Monday 10th December, 2012 at 12:26:49 UTC by Miodrag Milanović
typo fix from qmc2 (no whatsnew)
[src/osd/sdl]output.c

trunk/src/osd/sdl/output.c
r19446r19447
8282   if (fildes < 0)
8383   {
8484      output = NULL;
85      mame_printf_verbose("ouput: unable to open output notifier file %s\n", SDLMAME_OUTPUT);
85      mame_printf_verbose("output: unable to open output notifier file %s\n", SDLMAME_OUTPUT);
8686   }
8787   else
8888   {
8989      output = fdopen(fildes, "w");
9090
91      mame_printf_verbose("ouput: opened output notifier file %s\n", SDLMAME_OUTPUT);
91      mame_printf_verbose("output: opened output notifier file %s\n", SDLMAME_OUTPUT);
9292      fprintf(output, "MAME " PID_FMT " START %s\n", osd_getpid(), machine.system().name);
9393      fflush(output);
9494   }
r19446r19447
109109      fflush(output);
110110      fclose(output);
111111      output = NULL;
112      mame_printf_verbose("ouput: closed output notifier file\n");
112      mame_printf_verbose("output: closed output notifier file\n");
113113   }
114114}
115115

Previous 199869 Revisions Next


© 1997-2024 The MAME Team