Fix dynarmic submodule

This commit is contained in:
wheremyfoodat 2022-09-26 18:43:37 +03:00
parent 979519f785
commit f9287c1eda
5 changed files with 11 additions and 7 deletions

View file

@ -9,7 +9,7 @@ int main (int argc, char *argv[]) {
emu.initGraphicsContext();
auto elfPath = std::filesystem::current_path() / (argc > 1 ? argv[1] : "SimplerTri.elf");
auto elfPath = std::filesystem::current_path() / (argc > 1 ? argv[1] : "sm64.elf");
if (!emu.loadELF(elfPath)) {
// For some reason just .c_str() doesn't show the proper path
Helpers::panic("Failed to load ELF file: %s", elfPath.string().c_str());