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

index 9972b7f2b9a4e0309002690d4ede7cccc2aa9da7..f7ed0d48c459928be54a8eee693eda03756477d4 100644 (file)
@@ -151,7 +151,7 @@ static boolean struct_set_property(gpointer str, const GdStructDescriptor *prop_
   boolean was_string;
 
   params = getSplitStringArray(param, " ", -1);
-  paramcount = g_strv_length(params);
+  paramcount = getStringArrayLength(params);
   identifier_found = FALSE;
 
   /* check all known tags. do not exit this loop if identifier_found == true...
@@ -676,7 +676,7 @@ boolean gd_caveset_load_from_bdcff(const char *contents)
   default_cave = gd_cave_new();
   cave = default_cave;
 
-  linenum = g_strv_length(lines);
+  linenum = getStringArrayLength(lines);
 
   for (lineno = 0; lineno < linenum; lineno++)
   {
@@ -1051,7 +1051,7 @@ boolean gd_caveset_load_from_bdcff(const char *contents)
        params = getSplitStringArray(param, " ", -1);
 
        /* an effect command has two parameters */
-       if (g_strv_length(params) == 2)
+       if (getStringArrayLength(params) == 2)
        {
          int i;
 
index 748de2bedf4c71fbcc99420076aa56e442b21458..69e886171db50893cd98671b1e8bd90557a4a1ed 100644 (file)
@@ -618,7 +618,7 @@ GdObject *gd_object_new_from_string(char *str)
       freeStringArray(words);
 
     words = getSplitStringArray(param, " ", -1);
-    l = g_strv_length(words);
+    l = getStringArrayLength(words);
 
     if (l < 10 || l > 19)
       return NULL;