From: Zebediah Figura zfigura@codeweavers.com
Make it clear which library the debug output is coming from, without relying on the function name including "vkd3d". --- libs/vkd3d-common/debug.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libs/vkd3d-common/debug.c b/libs/vkd3d-common/debug.c index e07ed366..499334a3 100644 --- a/libs/vkd3d-common/debug.c +++ b/libs/vkd3d-common/debug.c @@ -105,7 +105,7 @@ void vkd3d_dbg_printf(enum vkd3d_dbg_level level, const char *function, const ch
assert(level < ARRAY_SIZE(debug_level_names));
- vkd3d_dbg_output("%s:%s ", debug_level_names[level], function); + vkd3d_dbg_output("vkd3d:%s:%s ", debug_level_names[level], function); va_start(args, fmt); vkd3d_dbg_voutput(fmt, args); va_end(args);