X-Git-Url: https://plomlompom.com/repos/feed.xml?a=blobdiff_plain;f=src%2Fclient%2Fio.c;h=d7d145065d918f1fe6c6fb8826af8077700344a7;hb=a31f16b08b3d4b17f558388dc22f6bd39c975cfb;hp=bdebef2440cbfee3c0eff685211ed16def36f916;hpb=99905d4c5205f8ed62e8136fa5d1eb89110d9249;p=plomrogue diff --git a/src/client/io.c b/src/client/io.c index bdebef2..d7d1450 100644 --- a/src/client/io.c +++ b/src/client/io.c @@ -197,6 +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.meta_map_0); // + read_map_cells(file, &world.meta_map_1); // free(read_buf); try_fclose(file, __func__); return 1; @@ -278,6 +280,7 @@ static uint8_t read_queue() { nl_append_string("(none known)", &world.things_here); } + world.things_here_scroll = 0; // } else if (things_here_parsing) {