We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e5d4bb commit af8c748Copy full SHA for af8c748
src/common/elf_info.h
@@ -111,7 +111,7 @@ class ElfInfo {
111
return raw_firmware_ver;
112
}
113
114
- [[nodiscard]] const PSFAttributes& PSFAttributes() const {
+ [[nodiscard]] const PSFAttributes& GetPSFAttributes() const {
115
ASSERT(initialized);
116
return psf_attributes;
117
src/core/libraries/kernel/process.cpp
@@ -15,7 +15,7 @@ namespace Libraries::Kernel {
15
int PS4_SYSV_ABI sceKernelIsNeoMode() {
16
LOG_DEBUG(Kernel_Sce, "called");
17
return Config::isNeoModeConsole() &&
18
- Common::ElfInfo::Instance().PSFAttributes().support_neo_mode;
+ Common::ElfInfo::Instance().GetPSFAttributes().support_neo_mode;
19
20
21
int PS4_SYSV_ABI sceKernelGetCompiledSdkVersion(int* ver) {
0 commit comments