From 893c5a5c1e17795c7f9d1c30becea4a1e371e3bb Mon Sep 17 00:00:00 2001 From: ramapcsx2 Date: Sat, 22 Sep 2012 18:03:44 +0000 Subject: [PATCH] Make IOP module loads visible in dev builds as well, not just debug ones. git-svn-id: http://pcsx2.googlecode.com/svn/trunk@5419 96395faa-99c1-11dd-bbfe-3dabce05a288 --- pcsx2/IopBios.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pcsx2/IopBios.cpp b/pcsx2/IopBios.cpp index ab7d6c9587..93ae835f05 100644 --- a/pcsx2/IopBios.cpp +++ b/pcsx2/IopBios.cpp @@ -550,7 +550,7 @@ _start: namespace loadcore { void RegisterLibraryEntries_DEBUG() { - DbgCon.WriteLn(Color_Gray, "RegisterLibraryEntries: %8.8s", iopVirtMemR(a0 + 12)); + DevCon.WriteLn(Color_Gray, "RegisterLibraryEntries: %8.8s", iopVirtMemR(a0 + 12)); } } @@ -577,14 +577,14 @@ namespace intrman { void RegisterIntrHandler_DEBUG() { - DbgCon.WriteLn(Color_Gray, "RegisterIntrHandler: intr %s, handler %x", intrname[a0], a2); + DevCon.WriteLn(Color_Gray, "RegisterIntrHandler: intr %s, handler %x", intrname[a0], a2); } } namespace sifcmd { void sceSifRegisterRpc_DEBUG() { - DbgCon.WriteLn( Color_Gray, "sifcmd sceSifRegisterRpc: rpc_id %x", a1); + DevCon.WriteLn( Color_Gray, "sifcmd sceSifRegisterRpc: rpc_id %x", a1); } }