Fix print

This commit is contained in:
momo5502
2025-08-16 11:53:44 +02:00
parent 3b72ae9709
commit 397db6decc

View File

@@ -99,7 +99,7 @@ namespace
void handle_thread_set_name(const analysis_context& c, const emulator_thread& t)
{
c.win_emu->log.print(color::blue, "Setting thread (%d) name: %s\n", t.id, u16_to_u8(t.name).c_str());
c.win_emu->log.print(color::blue, "Setting thread (%u) name: %s\n", t.id, u16_to_u8(t.name).c_str());
}
void handle_thread_switch(const analysis_context& c, const emulator_thread& current_thread,