mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-07-27 04:25:12 +00:00
My Main push
Just my Main Push
This commit is contained in:
parent
379ec554a8
commit
17f5c01f36
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;
|
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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -68,6 +68,8 @@ public:
|
|||||||
return "Tls";
|
return "Tls";
|
||||||
case SymbolType::NoType:
|
case SymbolType::NoType:
|
||||||
return "NoType";
|
return "NoType";
|
||||||
|
default:
|
||||||
|
return "Invalid";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -37,6 +37,8 @@ constexpr std::string_view NameOf(Condition condition) {
|
|||||||
return "Execz";
|
return "Execz";
|
||||||
case Condition::Execnz:
|
case Condition::Execnz:
|
||||||
return "Execnz";
|
return "Execnz";
|
||||||
|
default:
|
||||||
|
return "Invalid";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -222,6 +222,8 @@ vk::CompareOp DepthCompare(AmdGpu::DepthCompare comp) {
|
|||||||
return vk::CompareOp::eGreaterOrEqual;
|
return vk::CompareOp::eGreaterOrEqual;
|
||||||
case AmdGpu::DepthCompare::Always:
|
case AmdGpu::DepthCompare::Always:
|
||||||
return vk::CompareOp::eAlways;
|
return vk::CompareOp::eAlways;
|
||||||
|
default:
|
||||||
|
UNREACHABLE_MSG("Unknown depth compare op {}", u32(comp));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user