From ba41d9d581b7373bb1a5720d9ad75bab90458cdb Mon Sep 17 00:00:00 2001 From: Holger Schemel Date: Fri, 23 Feb 2024 19:00:43 +0100 Subject: [PATCH] replaced glib function calls to g_ascii_tolower() --- src/game_bd/bd_c64import.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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; } -- 2.34.1