Revert "add sceImeUpdate stub"

This reverts commit 61ace7b1b7.
This commit is contained in:
martin 2024-09-05 12:24:55 -05:00
parent d7e4c5002f
commit 0a368282e5
4 changed files with 2 additions and 7 deletions

View File

@ -2934,6 +2934,7 @@ STUB("-431A-YBAks", llrint)
STUB( STUB(
"-464OnBCer0", "-464OnBCer0",
_ZNK3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody6toJsonERNS_4Json5ValueEb) _ZNK3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody6toJsonERNS_4Json5ValueEb)
STUB("-4GCfYdNF1s", sceImeUpdate)
STUB( STUB(
"-4KIDH4cF1U", "-4KIDH4cF1U",
_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEixEm) _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEixEm)

View File

@ -2934,6 +2934,7 @@ STUB("-431A-YBAks", llrint)
STUB( STUB(
"-464OnBCer0", "-464OnBCer0",
_ZNK3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody6toJsonERNS_4Json5ValueEb) _ZNK3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody6toJsonERNS_4Json5ValueEb)
STUB("-4GCfYdNF1s", sceImeUpdate)
STUB( STUB(
"-4KIDH4cF1U", "-4KIDH4cF1U",
_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEixEm) _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEixEm)

View File

@ -93,11 +93,6 @@ int PS4_SYSV_ABI sceImeDialogTerm() {
return ORBIS_OK; return ORBIS_OK;
} }
int PS4_SYSV_ABI sceImeUpdate() {
return ORBIS_OK;
}
void RegisterlibSceImeDialog(Core::Loader::SymbolsResolver* sym) { void RegisterlibSceImeDialog(Core::Loader::SymbolsResolver* sym) {
LIB_FUNCTION("oBmw4xrmfKs", "libSceImeDialog", 1, "libSceImeDialog", 1, 1, sceImeDialogAbort); LIB_FUNCTION("oBmw4xrmfKs", "libSceImeDialog", 1, "libSceImeDialog", 1, 1, sceImeDialogAbort);
LIB_FUNCTION("bX4H+sxPI-o", "libSceImeDialog", 1, "libSceImeDialog", 1, 1, LIB_FUNCTION("bX4H+sxPI-o", "libSceImeDialog", 1, "libSceImeDialog", 1, 1,
@ -126,7 +121,6 @@ void RegisterlibSceImeDialog(Core::Loader::SymbolsResolver* sym) {
LIB_FUNCTION("-2WqB87KKGg", "libSceImeDialog", 1, "libSceImeDialog", 1, 1, LIB_FUNCTION("-2WqB87KKGg", "libSceImeDialog", 1, "libSceImeDialog", 1, 1,
sceImeDialogSetPanelPosition); sceImeDialogSetPanelPosition);
LIB_FUNCTION("gyTyVn+bXMw", "libSceImeDialog", 1, "libSceImeDialog", 1, 1, sceImeDialogTerm); LIB_FUNCTION("gyTyVn+bXMw", "libSceImeDialog", 1, "libSceImeDialog", 1, 1, sceImeDialogTerm);
LIB_FUNCTION("-4GCfYdNF1s", "libSceIme", 1, "libSceIme", 1, 1, sceImeUpdate);
}; };
} // namespace Libraries::ImeDialog } // namespace Libraries::ImeDialog

View File

@ -180,7 +180,6 @@ int PS4_SYSV_ABI sceImeDialogInitInternal2();
int PS4_SYSV_ABI sceImeDialogInitInternal3(); int PS4_SYSV_ABI sceImeDialogInitInternal3();
int PS4_SYSV_ABI sceImeDialogSetPanelPosition(); int PS4_SYSV_ABI sceImeDialogSetPanelPosition();
int PS4_SYSV_ABI sceImeDialogTerm(); int PS4_SYSV_ABI sceImeDialogTerm();
int PS4_SYSV_ABI sceImeUpdate();
void RegisterlibSceImeDialog(Core::Loader::SymbolsResolver* sym); void RegisterlibSceImeDialog(Core::Loader::SymbolsResolver* sym);
} // namespace Libraries::ImeDialog } // namespace Libraries::ImeDialog