mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-07-26 20:15:03 +00:00
savedata: Stub sceSaveDataDialogUpdateStatus to return finished
This commit is contained in:
parent
56c440ba24
commit
49e848a11b
@ -36,12 +36,6 @@ static void* PS4_SYSV_ABI sceKernelGetProcParam() {
|
|||||||
return reinterpret_cast<void*>(linker->GetProcParam());
|
return reinterpret_cast<void*>(linker->GetProcParam());
|
||||||
}
|
}
|
||||||
|
|
||||||
int32_t PS4_SYSV_ABI sceKernelReleaseDirectMemory(off_t start, size_t len) {
|
|
||||||
auto* memory = Core::Memory::Instance();
|
|
||||||
memory->Free(start, len);
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
static PS4_SYSV_ABI void stack_chk_fail() {
|
static PS4_SYSV_ABI void stack_chk_fail() {
|
||||||
UNREACHABLE();
|
UNREACHABLE();
|
||||||
}
|
}
|
||||||
|
@ -18,7 +18,6 @@ struct OrbisTimesec {
|
|||||||
u32 dst_sec;
|
u32 dst_sec;
|
||||||
};
|
};
|
||||||
|
|
||||||
int32_t PS4_SYSV_ABI sceKernelReleaseDirectMemory(size_t start, size_t len);
|
|
||||||
int* PS4_SYSV_ABI __Error();
|
int* PS4_SYSV_ABI __Error();
|
||||||
|
|
||||||
void LibKernel_Register(Core::Loader::SymbolsResolver* sym);
|
void LibKernel_Register(Core::Loader::SymbolsResolver* sym);
|
||||||
|
@ -55,7 +55,7 @@ int PS4_SYSV_ABI sceSaveDataDialogTerminate() {
|
|||||||
|
|
||||||
int PS4_SYSV_ABI sceSaveDataDialogUpdateStatus() {
|
int PS4_SYSV_ABI sceSaveDataDialogUpdateStatus() {
|
||||||
LOG_ERROR(Lib_SaveDataDialog, "(STUBBED) called");
|
LOG_ERROR(Lib_SaveDataDialog, "(STUBBED) called");
|
||||||
return ORBIS_OK;
|
return 3; // SCE_COMMON_DIALOG_STATUS_FINISHED
|
||||||
}
|
}
|
||||||
|
|
||||||
void RegisterlibSceSaveDataDialog(Core::Loader::SymbolsResolver* sym) {
|
void RegisterlibSceSaveDataDialog(Core::Loader::SymbolsResolver* sym) {
|
||||||
|
Loading…
Reference in New Issue
Block a user