Implement sceKernelGetSystemSwVersion (#3243)

* Implement sceKernelGetSystemSwVersion

* Set the reported firmware version to that of the game executable
This commit is contained in:
kalaposfos13
2025-07-14 22:44:13 +02:00
committed by GitHub
parent 00f4eeddaf
commit b68ca43166
2 changed files with 21 additions and 0 deletions

View File

@@ -35,6 +35,12 @@ struct OrbisWrapperImpl<PS4_SYSV_ABI R (*)(Args...), f> {
s32* PS4_SYSV_ABI __Error();
struct SwVersionStruct {
u64 struct_size;
char text_representation[0x1c];
u32 hex_representation;
};
void RegisterKernel(Core::Loader::SymbolsResolver* sym);
} // namespace Libraries::Kernel