mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-05 22:47:03 +00:00
Various minor logging improvements
Also changed the default connection state, because chances are, that you're connected to Internet.
This commit is contained in:
parent
9d1208bf95
commit
8f937bda0f
4 changed files with 12 additions and 8 deletions
|
|
@ -194,6 +194,7 @@ s32 cellSysmoduleIsLoaded(u16 id)
|
|||
|
||||
if (!Emu.GetModuleManager().CheckModuleId(id))
|
||||
{
|
||||
cellSysmodule.Error("cellSysmoduleIsLoaded(): unknown module (id=0x%04x)", id);
|
||||
return CELL_SYSMODULE_ERROR_UNKNOWN;
|
||||
}
|
||||
|
||||
|
|
@ -201,7 +202,7 @@ s32 cellSysmoduleIsLoaded(u16 id)
|
|||
{
|
||||
if (!m->IsLoaded())
|
||||
{
|
||||
cellSysmodule.Error("cellSysmoduleIsLoaded() failed: module not loaded (id=0x%04x)", id);
|
||||
cellSysmodule.Warning("cellSysmoduleIsLoaded(): module not loaded (id=0x%04x)", id);
|
||||
return CELL_SYSMODULE_ERROR_UNLOADED;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue