mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-05-18 17:34:52 +00:00
elf_info: Fix GCC build. (#2089)
This commit is contained in:
parent
3e5d4bb69c
commit
af8c748e9c
2 changed files with 2 additions and 2 deletions
|
@ -111,7 +111,7 @@ public:
|
||||||
return raw_firmware_ver;
|
return raw_firmware_ver;
|
||||||
}
|
}
|
||||||
|
|
||||||
[[nodiscard]] const PSFAttributes& PSFAttributes() const {
|
[[nodiscard]] const PSFAttributes& GetPSFAttributes() const {
|
||||||
ASSERT(initialized);
|
ASSERT(initialized);
|
||||||
return psf_attributes;
|
return psf_attributes;
|
||||||
}
|
}
|
||||||
|
|
|
@ -15,7 +15,7 @@ namespace Libraries::Kernel {
|
||||||
int PS4_SYSV_ABI sceKernelIsNeoMode() {
|
int PS4_SYSV_ABI sceKernelIsNeoMode() {
|
||||||
LOG_DEBUG(Kernel_Sce, "called");
|
LOG_DEBUG(Kernel_Sce, "called");
|
||||||
return Config::isNeoModeConsole() &&
|
return Config::isNeoModeConsole() &&
|
||||||
Common::ElfInfo::Instance().PSFAttributes().support_neo_mode;
|
Common::ElfInfo::Instance().GetPSFAttributes().support_neo_mode;
|
||||||
}
|
}
|
||||||
|
|
||||||
int PS4_SYSV_ABI sceKernelGetCompiledSdkVersion(int* ver) {
|
int PS4_SYSV_ABI sceKernelGetCompiledSdkVersion(int* ver) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue