Merge pull request #2103 from thedax/master

Fix small logging typos.
This commit is contained in:
Unknown W. Brackets 2013-06-05 20:20:49 -07:00
commit 1c6f67c209
2 changed files with 3 additions and 3 deletions

View File

@ -191,13 +191,13 @@ u32 sceMp3ReserveMp3Handle(u32 mp3Addr) {
}
int sceMp3InitResource() {
WARN_LOG(HLE, "UNIML: sceMp3InitResource");
WARN_LOG(HLE, "UNIMPL: sceMp3InitResource");
// Do nothing here
return 0;
}
int sceMp3TermResource() {
WARN_LOG(HLE, "UNIML: sceMp3TermResource");
WARN_LOG(HLE, "UNIMPL: sceMp3TermResource");
// Do nothing here
return 0;
}

View File

@ -179,7 +179,7 @@ int sceNetAdhocctlGetState(u32 ptrToStatus) {
//always return -1 since we don't have any real networking...
int sceNetAdhocPdpCreate(const char *mac, u32 port, int bufferSize, u32 unknown) {
ERROR_LOG(HLE, "UNIMPL sceNetAdhocctlAddHandler(%s, %x, %x, %x)", mac, port, bufferSize, unknown);
ERROR_LOG(HLE, "UNIMPL sceNetAdhocPdpCreate(%s, %x, %x, %x)", mac, port, bufferSize, unknown);
return -1;
}