1
0
mirror of https://github.com/RPCS3/rpcs3.git synced 2024-11-25 04:02:42 +01:00

Threads: fix typo in emergency_exit (dump useful info)

This commit is contained in:
Nekotekina 2021-01-26 19:58:47 +03:00
parent f10ea1fb9b
commit c24d89dd34

View File

@ -2417,7 +2417,7 @@ u64 thread_base::get_cycles()
{ {
if (std::string info = dump_useful_thread_info(); !info.empty()) if (std::string info = dump_useful_thread_info(); !info.empty())
{ {
sys_log.notice("\%s", info); sys_log.notice("\n%s", info);
} }
sig_log.fatal("Thread terminated due to fatal error: %s", reason); sig_log.fatal("Thread terminated due to fatal error: %s", reason);