X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Fgame_bd%2Fbd_c64import.c;h=b838aa4323caeec908b9800a41f2ccd387d1fe14;hb=27f82f7887886eee23bdf5da0f4e248b46d7f257;hp=49e0ded24116b184e46d56f408e2d25e7f6aeaaa;hpb=156f225c639428dc2c4f816863672c73b790cce6;p=rocksndiamonds.git 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; }