From: Holger Schemel Date: Wed, 21 Feb 2024 18:22:47 +0000 (+0100) Subject: removed unused code X-Git-Tag: 4.4.0.0-test-1~327 X-Git-Url: https://git.artsoft.org/?a=commitdiff_plain;h=fec87058390c43e3a4dafeb3e6ff26b8401841b2;p=rocksndiamonds.git removed unused code --- diff --git a/src/files.c b/src/files.c index 7b851893..d3031faf 100644 --- a/src/files.c +++ b/src/files.c @@ -6196,7 +6196,6 @@ static void LoadLevelFromFileInfo_SB(struct LevelInfo *level, boolean invalid_playfield_char = FALSE; boolean load_xsb_to_ces = check_special_flags("load_xsb_to_ces"); int file_level_nr = 0; - int line_nr = 0; int x = 0, y = 0; // initialized to make compilers happy last_comment[0] = '\0'; @@ -6238,10 +6237,6 @@ static void LoadLevelFromFileInfo_SB(struct LevelInfo *level, if (!getStringFromFile(file, line, MAX_LINE_LEN)) break; - // check if line was completely read and is terminated by line break - if (strlen(line) > 0 && line[strlen(line) - 1] == '\n') - line_nr++; - // cut trailing line break (this can be newline and/or carriage return) for (line_ptr = &line[strlen(line)]; line_ptr >= line; line_ptr--) if ((*line_ptr == '\n' || *line_ptr == '\r') && *(line_ptr + 1) == '\0')