More logging

This commit is contained in:
momo5502
2024-09-20 20:11:44 +02:00
parent a84e176bca
commit 7e082dab48

View File

@@ -53,9 +53,11 @@ namespace
}
catch (...)
{
printf("Emulation failed at: 0x%llX\n", win_emu.emu().read_instruction_pointer());
win_emu.logger.print(color::red, "Emulation failed at: 0x%llX\n", win_emu.emu().read_instruction_pointer());
throw;
}
win_emu.logger.print(color::red, "Emulation terminated!");
}
void run(std::string_view application)