From: Holger Schemel Date: Mon, 19 Feb 2024 23:19:10 +0000 (+0100) Subject: replaced glib function calls to g_strcompress() X-Git-Tag: 4.4.0.0-test-1~333 X-Git-Url: https://git.artsoft.org/?a=commitdiff_plain;h=1b947aa0ce6030688a3c6cf514a7661f4e64784c;p=rocksndiamonds.git replaced glib function calls to g_strcompress() --- 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);