From 7139f3c8070e9aa14fd36c2451d7f10079caa37a Mon Sep 17 00:00:00 2001 From: notaz Date: Tue, 30 Nov 2010 23:56:59 +0200 Subject: drc: further hacks, hle handling --- frontend/config.h | 2 +- frontend/main.c | 14 -------------- 2 files changed, 1 insertion(+), 15 deletions(-) (limited to 'frontend') diff --git a/frontend/config.h b/frontend/config.h index e8b255d..768460f 100644 --- a/frontend/config.h +++ b/frontend/config.h @@ -4,5 +4,5 @@ #define PACKAGE_NAME "pcsx" #define PACKAGE_VERSION "1.9" #define DEF_PLUGIN_DIR "." -#define EMU_LOG printf +//#define EMU_LOG printf #define USEOSS diff --git a/frontend/main.c b/frontend/main.c index 884b617..fd1c119 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); } -- cgit v1.2.3