My Main push

Just my Main Push
This commit is contained in:
Naomino 2024-07-07 19:28:57 +02:00
parent 379ec554a8
commit 17f5c01f36
5 changed files with 9 additions and 2 deletions

BIN
src/Archívum.zip Normal file

Binary file not shown.

View File

@ -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;
} }

View File

@ -68,6 +68,8 @@ public:
return "Tls"; return "Tls";
case SymbolType::NoType: case SymbolType::NoType:
return "NoType"; return "NoType";
default:
return "Invalid";
} }
} }

View File

@ -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";
} }
} }

View File

@ -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));
} }
} }