mirror of https://github.com/PCSX2/pcsx2.git
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
This commit is contained in:
parent
f1cffa6f7f
commit
893c5a5c1e
|
@ -550,7 +550,7 @@ _start:
|
||||||
namespace loadcore {
|
namespace loadcore {
|
||||||
void RegisterLibraryEntries_DEBUG()
|
void RegisterLibraryEntries_DEBUG()
|
||||||
{
|
{
|
||||||
DbgCon.WriteLn(Color_Gray, "RegisterLibraryEntries: %8.8s", iopVirtMemR<char>(a0 + 12));
|
DevCon.WriteLn(Color_Gray, "RegisterLibraryEntries: %8.8s", iopVirtMemR<char>(a0 + 12));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -577,14 +577,14 @@ namespace intrman {
|
||||||
|
|
||||||
void RegisterIntrHandler_DEBUG()
|
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 {
|
namespace sifcmd {
|
||||||
void sceSifRegisterRpc_DEBUG()
|
void sceSifRegisterRpc_DEBUG()
|
||||||
{
|
{
|
||||||
DbgCon.WriteLn( Color_Gray, "sifcmd sceSifRegisterRpc: rpc_id %x", a1);
|
DevCon.WriteLn( Color_Gray, "sifcmd sceSifRegisterRpc: rpc_id %x", a1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue