diff --git a/src/xenia/kernel/util/shim_utils.h b/src/xenia/kernel/util/shim_utils.h index 60e7525c5..b507a65c3 100644 --- a/src/xenia/kernel/util/shim_utils.h +++ b/src/xenia/kernel/util/shim_utils.h @@ -488,6 +488,15 @@ template void PrintKernelCall(cpu::Export* export_entry, const Tuple& params) { auto& string_buffer = *thread_local_string_buffer(); string_buffer.Reset(); + + if (export_entry->tags & xe::cpu::ExportTag::kStub) { + string_buffer.Append("[STUB] "); + } + + if (export_entry->tags & xe::cpu::ExportTag::kSketchy) { + string_buffer.Append("[SKETCHY] "); + } + string_buffer.Append(export_entry->name); string_buffer.Append('('); AppendKernelCallParams(string_buffer, export_entry, params);