mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-04-21 03:54:45 +00:00
My Main push
Just my Main Push
This commit is contained in:
parent
379ec554a8
commit
17f5c01f36
5 changed files with 9 additions and 2 deletions
BIN
src/Archívum.zip
Normal file
BIN
src/Archívum.zip
Normal file
Binary file not shown.
|
@ -295,8 +295,9 @@ int PS4_SYSV_ABI sceKernelUuidCreate(OrbisKernelUuid* orbisUuid) {
|
|||
return 0;
|
||||
}
|
||||
|
||||
char* PS4_SYSV_ABI sceKernelGetFsSandboxRandomWord() {
|
||||
char* path = "sys";
|
||||
/// Naomi Rework (Const)
|
||||
const char* PS4_SYSV_ABI sceKernelGetFsSandboxRandomWord() {
|
||||
const char* path = "sys";
|
||||
return path;
|
||||
}
|
||||
|
||||
|
|
|
@ -68,6 +68,8 @@ public:
|
|||
return "Tls";
|
||||
case SymbolType::NoType:
|
||||
return "NoType";
|
||||
default:
|
||||
return "Invalid";
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -37,6 +37,8 @@ constexpr std::string_view NameOf(Condition condition) {
|
|||
return "Execz";
|
||||
case Condition::Execnz:
|
||||
return "Execnz";
|
||||
default:
|
||||
return "Invalid";
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -222,6 +222,8 @@ vk::CompareOp DepthCompare(AmdGpu::DepthCompare comp) {
|
|||
return vk::CompareOp::eGreaterOrEqual;
|
||||
case AmdGpu::DepthCompare::Always:
|
||||
return vk::CompareOp::eAlways;
|
||||
default:
|
||||
UNREACHABLE_MSG("Unknown depth compare op {}", u32(comp));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue