replaced glib function calls to g_strstrip() and g_strchomp()
authorHolger Schemel <info@artsoft.org>
Fri, 23 Feb 2024 17:59:12 +0000 (18:59 +0100)
committerHolger Schemel <info@artsoft.org>
Fri, 23 Feb 2024 17:59:12 +0000 (18:59 +0100)
src/game_bd/bd_bdcff.c
src/game_bd/bd_c64import.c

index 20aba8f946e499a1f5032ff4b919984ebd0d315c..1a204a2fb17b26c888d796694fd157aa687258f6 100644 (file)
@@ -884,7 +884,7 @@ boolean gd_caveset_load_from_bdcff(const char *contents)
 
     /* strip leading and trailing spaces AFTER checking if we are reading a map.
        map lines might begin or end with spaces */
-    g_strstrip(line);
+    stripString(line);
 
     if (reading_highscore)
     {
index 921c57f1f0921beb8c7542c0819a22d3705b68f9..49e0ded24116b184e46d56f408e2d25e7f6aeaaa 100644 (file)
@@ -1165,7 +1165,7 @@ static int cave_copy_from_plck(GdCave *cave, const guint8 *data,
     for (j = 0; j < 12; j++)
       cave->name[j] = data[0x1f2 + j];
 
-    g_strchomp(cave->name);    /* remove spaces */
+    chompString(cave->name);    /* remove spaces */
   }
   else
   {
@@ -1457,7 +1457,7 @@ static int cave_copy_from_1stb(GdCave *cave, const guint8 *data, int remaining_b
     cave->name[i] = c;
   }
 
-  g_strchomp(cave->name);
+  chompString(cave->name);
 
   cave->intermission = data[0x389] != 0;
 
@@ -1586,7 +1586,7 @@ static int cave_copy_from_crdr_7(GdCave *cave, const guint8 *data, int remaining
     cave->name[i] = c;
   }
 
-  g_strchomp(cave->name);    /* remove trailing and leading spaces */
+  chompString(cave->name);    /* remove trailing and leading spaces */
 
   cave->selectable = data[14] != 0;
 
@@ -2033,7 +2033,7 @@ static int cave_copy_from_crli(GdCave *cave, const guint8 *data, int remaining_b
       cave->name[i] = c;
     }
 
-    g_strchomp(cave->name);    /* remove trailing and leading spaces */
+    chompString(cave->name);    /* remove trailing and leading spaces */
   }
 
   /* uncompress rle data */