what the hell is the point of that? Beyond crashing if $PWD is unwritable, that is?

This commit is contained in:
Alcaro
2014-04-18 00:32:24 +02:00
parent ca247f2e4a
commit a5264848c0

View File

@@ -460,9 +460,11 @@ void FCEU_printf(char *format, ...) {
vsprintf(temp, format, ap);
FCEUD_Message(temp);
#ifndef __LIBRETRO__
ofile = fopen("stdout.txt", "ab");
fwrite(temp, 1, strlen(temp), ofile);
fclose(ofile);
#endif
va_end(ap);
}