From 1b947aa0ce6030688a3c6cf514a7661f4e64784c Mon Sep 17 00:00:00 2001 From: Holger Schemel Date: Tue, 20 Feb 2024 00:19:10 +0100 Subject: [PATCH] replaced glib function calls to g_strcompress() --- src/game_bd/bd_bdcff.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game_bd/bd_bdcff.c b/src/game_bd/bd_bdcff.c index f7ed0d48..235938b7 100644 --- a/src/game_bd/bd_bdcff.c +++ b/src/game_bd/bd_bdcff.c @@ -191,7 +191,7 @@ static boolean struct_set_property(gpointer str, const GdStructDescriptor *prop_ GString *str = *(GString **)value; char *compressed; - compressed = g_strcompress(param); + compressed = getUnescapedString(param); g_string_assign(str, compressed); free(compressed); -- 2.34.1