From caf03df76204d87e87b111e9678a12f4f5303438 Mon Sep 17 00:00:00 2001 From: FunkyFr3sh Date: Mon, 3 Jun 2024 09:13:51 +0200 Subject: [PATCH] add filename to logs --- src/config.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/config.c b/src/config.c index 1f1408f..b9ed2aa 100644 --- a/src/config.c +++ b/src/config.c @@ -1468,7 +1468,8 @@ static void cfg_init() ini_create(&g_config.ini, g_config.ini_path); cfg_get_game_section(g_config.game_section, sizeof(g_config.game_section)); - TRACE("section = %s\n", g_config.game_section[0] ? g_config.game_section : "ddraw"); + TRACE("filename = %s\n", g_config.process_file_name); + TRACE("section = %s\n", g_config.game_section[0] ? g_config.game_section : "ddraw"); } static DWORD cfg_get_game_section(LPSTR buf, DWORD size)