Fiix std::filesystem::path being bad

This commit is contained in:
wheremyfoodat 2022-09-22 03:46:45 +03:00
parent 5993dc4759
commit eb536ee147

View file

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