mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-08-06 16:18:42 +00:00
Update libkernel.cpp
Changing from char* to const char* Regarding C++ ISO
This commit is contained in:
parent
06903b69c6
commit
dc45515c11
1 changed files with 3 additions and 2 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue