[ShaderJIT] CALL, DP4, IFC, IFU, MUL, RSQ

This commit is contained in:
wheremyfoodat
2023-06-10 00:58:38 +03:00
parent 1fe44c0098
commit 1aea8199c5
3 changed files with 180 additions and 3 deletions

View File

@@ -9,7 +9,7 @@ int main (int argc, char *argv[]) {
emu.initGraphicsContext();
auto romPath = std::filesystem::current_path() / (argc > 1 ? argv[1] : "Metroid Prime - Federation Force (Europe) (En,Fr,De,Es,It).3ds");
auto romPath = std::filesystem::current_path() / (argc > 1 ? argv[1] : "OoT Demo.3ds");
if (!emu.loadROM(romPath)) {
// For some reason just .c_str() doesn't show the proper path
Helpers::panic("Failed to load ROM file: %s", romPath.string().c_str());