X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=src%2Fclient%2Fio.c;h=d7d145065d918f1fe6c6fb8826af8077700344a7;hb=a31f16b08b3d4b17f558388dc22f6bd39c975cfb;hp=df90c17f2be29be49451b35c866bcd44387b422c;hpb=d619d78a39d7db2edcffa47ec08ed00b26e224d7;p=plomrogue diff --git a/src/client/io.c b/src/client/io.c index df90c17..d7d1450 100644 --- a/src/client/io.c +++ b/src/client/io.c @@ -197,7 +197,8 @@ static uint8_t read_worldstate() world.map.length = (uint16_t) read_value_from_line(read_buf, linemax, file); read_map_cells(file, &world.map.cells); read_map_cells(file, &world.mem_map); - read_map_cells(file, &world.stacks_map); // + read_map_cells(file, &world.meta_map_0); // + read_map_cells(file, &world.meta_map_1); // free(read_buf); try_fclose(file, __func__); return 1;