mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-07-27 04:25:12 +00:00
Update libkernel.cpp
Changing from char* to const char* Regarding C++ ISO
This commit is contained in:
parent
06903b69c6
commit
dc45515c11
@ -295,8 +295,9 @@ int PS4_SYSV_ABI sceKernelUuidCreate(OrbisKernelUuid* orbisUuid) {
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
char* PS4_SYSV_ABI sceKernelGetFsSandboxRandomWord() {
|
/// Naomi Rework (Const)
|
||||||
char* path = "sys";
|
const char* PS4_SYSV_ABI sceKernelGetFsSandboxRandomWord() {
|
||||||
|
const char* path = "sys";
|
||||||
return path;
|
return path;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user