replaced glib function calls to g_strcompress()
authorHolger Schemel <info@artsoft.org>
Mon, 19 Feb 2024 23:19:10 +0000 (00:19 +0100)
committerHolger Schemel <info@artsoft.org>
Mon, 19 Feb 2024 23:19:10 +0000 (00:19 +0100)
src/game_bd/bd_bdcff.c

index f7ed0d48c459928be54a8eee693eda03756477d4..235938b723c3e0d56e21a3cf4a0dc2b852db35bc 100644 (file)
@@ -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);