mirror of
https://github.com/Detanup01/gbe_fork.git
synced 2024-11-23 19:25:35 +08:00
crashprinter fix
This commit is contained in:
parent
1fde9f21f1
commit
b6e37d8207
@ -109,6 +109,7 @@ static void log_exception(LPEXCEPTION_POINTERS ex_pointers)
|
|||||||
auto now = std::chrono::system_clock::now();
|
auto now = std::chrono::system_clock::now();
|
||||||
auto t_now = std::chrono::system_clock::to_time_t(now);
|
auto t_now = std::chrono::system_clock::to_time_t(now);
|
||||||
auto gm_time = std::gmtime(&t_now);
|
auto gm_time = std::gmtime(&t_now);
|
||||||
|
auto asc_time = std::asctime(gm_time);
|
||||||
auto time = std::string(asc_time ? asc_time : "");
|
auto time = std::string(asc_time ? asc_time : "");
|
||||||
time.pop_back(); // remove the trailing '\n' added by asctime
|
time.pop_back(); // remove the trailing '\n' added by asctime
|
||||||
common_helpers::write(file, "[" + time + "]");
|
common_helpers::write(file, "[" + time + "]");
|
||||||
|
Loading…
Reference in New Issue
Block a user