mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-12-10 05:38:49 +00:00
Fixes scePlayGoDialog status stub (#3750)
* Fixes scePlayGoDialog status stub * input: Fix analog stick stuttering caused by excessive state buffering
This commit is contained in:
@@ -30,7 +30,7 @@ Error PS4_SYSV_ABI scePlayGoDialogGetResult(OrbisPlayGoDialogResult* result) {
|
||||
|
||||
Status PS4_SYSV_ABI scePlayGoDialogGetStatus() {
|
||||
LOG_ERROR(Lib_PlayGoDialog, "(DUMMY) called");
|
||||
return Status::FINISHED;
|
||||
return Status::NONE;
|
||||
}
|
||||
|
||||
Error PS4_SYSV_ABI scePlayGoDialogInitialize() {
|
||||
@@ -55,7 +55,7 @@ Error PS4_SYSV_ABI scePlayGoDialogTerminate() {
|
||||
|
||||
Status PS4_SYSV_ABI scePlayGoDialogUpdateStatus() {
|
||||
LOG_ERROR(Lib_PlayGoDialog, "(DUMMY) called");
|
||||
return Status::FINISHED;
|
||||
return Status::NONE;
|
||||
}
|
||||
|
||||
void RegisterLib(Core::Loader::SymbolsResolver* sym) {
|
||||
|
||||
Reference in New Issue
Block a user