From: Holger Schemel Date: Fri, 23 Feb 2024 18:00:43 +0000 (+0100) Subject: replaced glib function calls to g_ascii_tolower() X-Git-Tag: 4.4.0.0-test-1~298 X-Git-Url: https://git.artsoft.org/?a=commitdiff_plain;h=ba41d9d581b7373bb1a5720d9ad75bab90458cdb;p=rocksndiamonds.git replaced glib function calls to g_ascii_tolower() --- diff --git a/src/game_bd/bd_c64import.c b/src/game_bd/bd_c64import.c index 49e0ded2..b838aa43 100644 --- a/src/game_bd/bd_c64import.c +++ b/src/game_bd/bd_c64import.c @@ -1452,7 +1452,7 @@ static int cave_copy_from_1stb(GdCave *cave, const guint8 *data, int remaining_b c = ' '; /* don't know this, so change to space */ if (i > 0) - c = g_ascii_tolower(c); + c = tolower(c); cave->name[i] = c; } @@ -1581,7 +1581,7 @@ static int cave_copy_from_crdr_7(GdCave *cave, const guint8 *data, int remaining else c = ' '; if (i > 0) - c = g_ascii_tolower(c); + c = tolower(c); cave->name[i] = c; } @@ -2028,7 +2028,7 @@ static int cave_copy_from_crli(GdCave *cave, const guint8 *data, int remaining_b c = ' '; if (i > 0) - c = g_ascii_tolower(c); + c = tolower(c); cave->name[i] = c; }