Fixing typos

This commit is contained in:
rokinot 2024-09-15 21:49:50 -03:00
parent dcf245b814
commit d5942179ff
8 changed files with 9 additions and 9 deletions

View File

@ -34348,7 +34348,7 @@ STUB(
_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEaSERS8_)
STUB("AmFhOPPRYW4", _ZN3sce2Np9CppWebApi7Matches2V118CreateMatchRequestD1Ev)
STUB("AmJ0mn2l4lM", sceKernelGetLibkernelTextLocation)
STUB("AmJ3FJxT7r8", sceUserServiceSetGlsIsRecievedMessageHidden)
STUB("AmJ3FJxT7r8", sceUserServiceSetGlsIsReceivedMessageHidden)
STUB("AmNeqCMs2oU", SSL_CTX_up_ref)
STUB("AmSA0TTYNEQ", _ZN3sce7Toolkit2NP2V212ActivityFeed13ButtonCaptionC1Ev)
STUB("AmTKOUGAGpA", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V111LeaveReasonEED1Ev)

View File

@ -375,7 +375,7 @@ s32 PS4_SYSV_ABI sceGnmAddEqEvent(SceKernelEqueue eq, u64 id, void* udata) {
Platform::InterruptId::GfxEop,
[=](Platform::InterruptId irq) {
ASSERT_MSG(irq == Platform::InterruptId::GfxEop,
"An unexpected IRQ occured"); // We need to convert IRQ# to event id and do
"An unexpected IRQ occurred"); // We need to convert IRQ# to event id and do
// proper filtering in trigger function
eq->TriggerEvent(GnmEventIdents::GfxEop, SceKernelEvent::Filter::GraphicsCore, nullptr);
},

View File

@ -1470,7 +1470,7 @@ int PS4_SYSV_ABI sceUserServiceSetGlsIsRecDisabled() {
return ORBIS_OK;
}
int PS4_SYSV_ABI sceUserServiceSetGlsIsRecievedMessageHidden() {
int PS4_SYSV_ABI sceUserServiceSetGlsIsReceivedMessageHidden() {
LOG_ERROR(Lib_UserService, "(STUBBED) called");
return ORBIS_OK;
}
@ -2735,7 +2735,7 @@ void RegisterlibSceUserService(Core::Loader::SymbolsResolver* sym) {
LIB_FUNCTION("6oZ3DZGzjIE", "libSceUserService", 1, "libSceUserService", 1, 1,
sceUserServiceSetGlsIsRecDisabled);
LIB_FUNCTION("AmJ3FJxT7r8", "libSceUserService", 1, "libSceUserService", 1, 1,
sceUserServiceSetGlsIsRecievedMessageHidden);
sceUserServiceSetGlsIsReceivedMessageHidden);
LIB_FUNCTION("lsdxBeRnEes", "libSceUserService", 1, "libSceUserService", 1, 1,
sceUserServiceSetGlsIsTwitterEnabled);
LIB_FUNCTION("wgVAwa31l0E", "libSceUserService", 1, "libSceUserService", 1, 1,

View File

@ -341,7 +341,7 @@ int PS4_SYSV_ABI sceUserServiceSetGlsIsCameraHidden();
int PS4_SYSV_ABI sceUserServiceSetGlsIsFacebookEnabled();
int PS4_SYSV_ABI sceUserServiceSetGlsIsMuteEnabled();
int PS4_SYSV_ABI sceUserServiceSetGlsIsRecDisabled();
int PS4_SYSV_ABI sceUserServiceSetGlsIsRecievedMessageHidden();
int PS4_SYSV_ABI sceUserServiceSetGlsIsReceivedMessageHidden();
int PS4_SYSV_ABI sceUserServiceSetGlsIsTwitterEnabled();
int PS4_SYSV_ABI sceUserServiceSetGlsLanguageFilter();
int PS4_SYSV_ABI sceUserServiceSetGlsLfpsSortOrder();

View File

@ -270,7 +270,7 @@ s32 sceVideoOutSubmitEopFlip(s32 handle, u32 buf_id, u32 mode, u32 arg, void** u
Platform::IrqC::Instance()->RegisterOnce(
Platform::InterruptId::GfxFlip, [=](Platform::InterruptId irq) {
ASSERT_MSG(irq == Platform::InterruptId::GfxFlip, "An unexpected IRQ occured");
ASSERT_MSG(irq == Platform::InterruptId::GfxFlip, "An unexpected IRQ occurred");
ASSERT_MSG(port->buffer_labels[buf_id] == 1, "Out of order flip IRQ");
const auto result = driver->SubmitFlip(port, buf_id, arg, true);
ASSERT_MSG(result, "EOP flip submission failed");

View File

@ -21,7 +21,7 @@ struct OrbisKernelMemParam {
u8* extended_memory_1;
u64* extended_gpu_page_table;
u8* extended_memory_2;
u64* exnteded_cpu_page_table;
u64* extended_cpu_page_table;
};
struct OrbisProcParam {

View File

@ -92,7 +92,7 @@ struct PageManager::Impl {
UNREACHABLE_MSG("Unexpected number of descriptors {} out of poll", pollres);
}
// We don't want an error condition to have occured.
// We don't want an error condition to have occurred.
ASSERT_MSG(!(pollfd.revents & POLLERR), "POLLERR on userfaultfd");
// We waited until there is data to read, we don't care about anything else.

View File

@ -25,7 +25,7 @@ class PageManager;
enum class FindFlags {
NoCreate = 1 << 0, ///< Do not create an image if searching for one fails.
RelaxDim = 1 << 1, ///< Do not check the dimentions of image, only address.
RelaxDim = 1 << 1, ///< Do not check the dimensions of image, only address.
RelaxSize = 1 << 2, ///< Do not check that the size matches exactly.
RelaxFmt = 1 << 3, ///< Do not check that format is compatible.
};