From 9747b0bfd7928608e250634b09c41c81c39a3411 Mon Sep 17 00:00:00 2001 From: Henrik Rydgard Date: Tue, 6 Nov 2012 16:37:31 +0100 Subject: [PATCH] Cleaner emulator: logging --- Core/HLE/sceIo.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Core/HLE/sceIo.cpp b/Core/HLE/sceIo.cpp index 9b689f6003..2beb1ede04 100644 --- a/Core/HLE/sceIo.cpp +++ b/Core/HLE/sceIo.cpp @@ -481,8 +481,10 @@ void sceIoDevctl() //(const char *name, int cmd, void *arg, size_t arglen, void int argLen = PARAM(3); u32 outPtr = PARAM(4); int outLen = PARAM(5); - DEBUG_LOG(HLE,"sceIoDevctl(\"%s\", %08x, %08x, %i, %08x, %i)", - name, cmd,argAddr,argLen,outPtr,outLen); + + if (strcmp(name, "emulator:")) { + DEBUG_LOG(HLE,"sceIoDevctl(\"%s\", %08x, %08x, %i, %08x, %i)", name, cmd,argAddr,argLen,outPtr,outLen); + } // UMD checks switch (cmd) {