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;
}
char* PS4_SYSV_ABI sceKernelGetFsSandboxRandomWord() {
char* path = "sys";
/// Naomi Rework (Const)
const char* PS4_SYSV_ABI sceKernelGetFsSandboxRandomWord() {
const char* path = "sys";
return path;
}

View file

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

View file

@ -37,6 +37,8 @@ constexpr std::string_view NameOf(Condition condition) {
return "Execz";
case Condition::Execnz:
return "Execnz";
default:
return "Invalid";
}
}

View file

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