home · contact · privacy
Removed scoring.
[plomrogue] / src / client / io.c
index a4dc7f321b6e764714fc52410f0c32f51fc68d37..27a0e0f46d623fc2b31be94c074a2c953d61becb 100644 (file)
@@ -196,7 +196,6 @@ static uint8_t read_world()
     uint32_t linemax = textfile_width(file);
     char * read_buf = try_malloc(linemax + 1, f_name);
     world.turn = read_value_from_line(read_buf, linemax, file);
-    world.player_score = read_value_from_line(read_buf, linemax, file);
     world.player_lifepoints = read_value_from_line(read_buf, linemax, file);
     read_inventory(read_buf, linemax, file);
     world.player_pos.y = read_value_from_line(read_buf, linemax, file);