mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-27 15:30:35 +00:00
UNIMPL functions replace DEBUG_LOG -> ERROR_LOG
This commit is contained in:
parent
c2c6adb7c9
commit
55b94900a0
@ -21,7 +21,7 @@
|
||||
|
||||
int sceHttpSetResolveRetry(int connectionID, int retryCount)
|
||||
{
|
||||
DEBUG_LOG(HLE, "UNIMPL sceHttpSetResolveRetry()");
|
||||
ERROR_LOG(HLE, "UNIMPL sceHttpSetResolveRetry()");
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
@ -236,7 +236,7 @@ void sceKernelExitGameWithStatus()
|
||||
|
||||
int LoadExecForUser_362A956B()
|
||||
{
|
||||
DEBUG_LOG(HLE,"UNIMPL LoadExecForUser_362A956B()");
|
||||
ERROR_LOG(HLE,"UNIMPL LoadExecForUser_362A956B()");
|
||||
return 0;
|
||||
}
|
||||
|
||||
@ -616,7 +616,7 @@ u32 sceKernelReferThreadProfiler(u32 statusPtr) {
|
||||
}
|
||||
|
||||
int sceKernelReferGlobalProfiler(u32 statusPtr) {
|
||||
DEBUG_LOG(HLE, "UNIMPL sceKernelReferGlobalProfiler(%08x)", statusPtr);
|
||||
ERROR_LOG(HLE, "UNIMPL sceKernelReferGlobalProfiler(%08x)", statusPtr);
|
||||
// Ignore for now
|
||||
return 0;
|
||||
}
|
||||
|
@ -25,14 +25,14 @@
|
||||
int sceNp_857B47D3()
|
||||
{
|
||||
// No parameters
|
||||
DEBUG_LOG(HLE, "UNIMPL sceNp_857B47D3()");
|
||||
ERROR_LOG(HLE, "UNIMPL sceNp_857B47D3()");
|
||||
return 0;
|
||||
}
|
||||
|
||||
int sceNp_37E1E274()
|
||||
{
|
||||
// No parameters
|
||||
DEBUG_LOG(HLE, "UNIMPL sceNp_37E1E274()");
|
||||
ERROR_LOG(HLE, "UNIMPL sceNp_37E1E274()");
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
@ -21,13 +21,13 @@
|
||||
|
||||
int scePauth_F7AA47F6(u32 srcPtr, int srcLength, u32 destLengthPtr, u32 workArea)
|
||||
{
|
||||
DEBUG_LOG(HLE, "UNIMPL scePauth_F7AA47F6(%d, %d, %d, %d)", srcPtr, srcLength, destLengthPtr, workArea);
|
||||
ERROR_LOG(HLE, "UNIMPL scePauth_F7AA47F6(%d, %d, %d, %d)", srcPtr, srcLength, destLengthPtr, workArea);
|
||||
return 0;
|
||||
}
|
||||
|
||||
int scePauth_98B83B5D(u32 srcPtr, int srcLength, u32 destLengthPtr, u32 workArea)
|
||||
{
|
||||
DEBUG_LOG(HLE, "UNIMPL scePauth_98B83B5D(%d, %d, %d, %d)", srcPtr, srcLength, destLengthPtr, workArea);
|
||||
ERROR_LOG(HLE, "UNIMPL scePauth_98B83B5D(%d, %d, %d, %d)", srcPtr, srcLength, destLengthPtr, workArea);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
@ -802,7 +802,7 @@ int sceRtcGetLastAdjustedTime(u32 tickPtr)
|
||||
u64 curTick = __RtcGetCurrentTick();
|
||||
if (Memory::IsValidAddress(tickPtr))
|
||||
Memory::Write_U64(curTick, tickPtr);
|
||||
DEBUG_LOG(HLE, "sceRtcGetLastAdjustedTime(%d)", tickPtr);
|
||||
ERROR_LOG(HLE, "sceRtcGetLastAdjustedTime(%d)", tickPtr);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
@ -472,25 +472,25 @@ void sceUtilityInstallInitStart(u32 unknown)
|
||||
|
||||
int sceUtilityStoreCheckoutShutdownStart()
|
||||
{
|
||||
DEBUG_LOG(HLE,"UNIMPL sceUtilityStoreCheckoutShutdownStart()");
|
||||
ERROR_LOG(HLE,"UNIMPL sceUtilityStoreCheckoutShutdownStart()");
|
||||
return 0;
|
||||
}
|
||||
|
||||
int sceUtilityStoreCheckoutInitStart(u32 paramsPtr)
|
||||
{
|
||||
DEBUG_LOG(HLE,"UNIMPL sceUtilityStoreCheckoutInitStart(%d)", paramsPtr);
|
||||
ERROR_LOG(HLE,"UNIMPL sceUtilityStoreCheckoutInitStart(%d)", paramsPtr);
|
||||
return 0;
|
||||
}
|
||||
|
||||
int sceUtilityStoreCheckoutUpdate(int drawSpeed)
|
||||
{
|
||||
DEBUG_LOG(HLE,"UNIMPL sceUtilityStoreCheckoutUpdate(%d)", drawSpeed);
|
||||
ERROR_LOG(HLE,"UNIMPL sceUtilityStoreCheckoutUpdate(%d)", drawSpeed);
|
||||
return 0;
|
||||
}
|
||||
|
||||
int sceUtilityStoreCheckoutGetStatus()
|
||||
{
|
||||
DEBUG_LOG(HLE,"UNIMPL sceUtilityStoreCheckoutGetStatus()");
|
||||
ERROR_LOG(HLE,"UNIMPL sceUtilityStoreCheckoutGetStatus()");
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
@ -229,6 +229,8 @@ LOCAL_SRC_FILES := \
|
||||
$(SRC)/Core/HLE/sceVaudio.cpp \
|
||||
$(SRC)/Core/HLE/scePspNpDrm_user.cpp \
|
||||
$(SRC)/Core/HLE/sceGameUpdate.cpp \
|
||||
$(SRC)/Core/HLE/sceNp.cpp \
|
||||
$(SRC)/Core/HLE/scePauth.cpp \
|
||||
$(SRC)/Core/FileSystems/BlockDevices.cpp \
|
||||
$(SRC)/Core/FileSystems/ISOFileSystem.cpp \
|
||||
$(SRC)/Core/FileSystems/MetaFileSystem.cpp \
|
||||
|
Loading…
Reference in New Issue
Block a user