diff --git a/Core/HLE/sceIo.cpp b/Core/HLE/sceIo.cpp index 3a34c5ee0f..a9f6362691 100644 --- a/Core/HLE/sceIo.cpp +++ b/Core/HLE/sceIo.cpp @@ -373,14 +373,14 @@ u32 sceIoWrite(int id, void *data_ptr, int size) if (id == 2) { //stderr! const char *str = (const char*) data_ptr; - INFO_LOG(HLE, "stderr: %s", str); + DEBUG_LOG(HLE, "stderr: %s", str); return size; } else if (id == 1) { //stdout! char *str = (char *) data_ptr; char temp = str[size]; str[size] = 0; - INFO_LOG(HLE, "stdout: %s", str); + DEBUG_LOG(HLE, "stdout: %s", str); str[size] = temp; return size; } diff --git a/native b/native index b5037341aa..464240f703 160000 --- a/native +++ b/native @@ -1 +1 @@ -Subproject commit b5037341aaca775e806be4b6a7bf109a47e0c655 +Subproject commit 464240f7034b8defe5a60513c1e88bf6dc1c94c2 diff --git a/pspautotests b/pspautotests index 3e830600f6..31e3915d4e 160000 --- a/pspautotests +++ b/pspautotests @@ -1 +1 @@ -Subproject commit 3e830600f66d1f5235ff5b7cad4e2346af66445a +Subproject commit 31e3915d4e4302e5e7dc2f6c2a4f191c420f38f9