aboutsummaryrefslogtreecommitdiff
path: root/frontend
diff options
context:
space:
mode:
Diffstat (limited to 'frontend')
-rw-r--r--frontend/config.h2
-rw-r--r--frontend/main.c14
2 files changed, 1 insertions, 15 deletions
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);
}