aboutsummaryrefslogtreecommitdiff
path: root/frontend
diff options
context:
space:
mode:
authornotaz2010-11-30 23:56:59 +0200
committernotaz2010-12-02 01:17:34 +0200
commit7139f3c8070e9aa14fd36c2451d7f10079caa37a (patch)
treebda1db45111d8298306865b90ad9523d9d327dc9 /frontend
parent2002a1dbd97bc1b94b12ec3e90702a770b040858 (diff)
downloadpcsx_rearmed-7139f3c8070e9aa14fd36c2451d7f10079caa37a.tar.gz
pcsx_rearmed-7139f3c8070e9aa14fd36c2451d7f10079caa37a.tar.bz2
pcsx_rearmed-7139f3c8070e9aa14fd36c2451d7f10079caa37a.zip
drc: further hacks, hle handling
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);
}