X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?p=pcsx_rearmed.git;a=blobdiff_plain;f=frontend%2Fmain.c;h=fd1c119862215ded0d80fae800b3ede6ec8ad5c6;hp=884b6176c39a4d737704f5a510107bd5515a7476;hb=ae602c19f527fbc1f44cdb744cf824d04b8eceb1;hpb=14dffdb7a0457fc647103deafa5f1cac12e888fb diff --git a/frontend/main.c b/frontend/main.c index 884b6176..fd1c1198 100644 --- a/frontend/main.c +++ b/frontend/main.c @@ -87,7 +87,6 @@ int main(int argc, char *argv[]) emuLog = stdout; SetIsoFile(NULL); - Config.PsxOut = 1; // read command line options for (i = 1; i < argc; i++) { @@ -353,19 +352,6 @@ void SysPrintf(const char *fmt, ...) { vsprintf(msg, fmt, list); va_end(list); - if (Config.PsxOut) { - static char linestart = 1; - int l = strlen(msg); - - printf(linestart ? " * %s" : "%s", msg); - - if (l > 0 && msg[l - 1] == '\n') { - linestart = 1; - } else { - linestart = 0; - } - } - fprintf(emuLog, "%s", msg); }