diff options
author | Andrei Karas <akaras@inbox.ru> | 2019-03-02 23:31:15 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2019-03-02 23:31:15 +0300 |
commit | fdb0fdf03b7d0947c6ee5b9c9febd5cc4b603520 (patch) | |
tree | f6f0f07eb1c29d9daeb8aebc2c1238f9de8bd7c5 | |
parent | 4effbb02d2e656d0d8f33e4337b4b932d6ae8ce7 (diff) | |
download | evol-hercules-fdb0fdf03b7d0947c6ee5b9c9febd5cc4b603520.tar.gz evol-hercules-fdb0fdf03b7d0947c6ee5b9c9febd5cc4b603520.tar.bz2 evol-hercules-fdb0fdf03b7d0947c6ee5b9c9febd5cc4b603520.tar.xz evol-hercules-fdb0fdf03b7d0947c6ee5b9c9febd5cc4b603520.zip |
Try to load map cells before set wall on map
-rw-r--r-- | src/Makefile.am | 4 | ||||
-rw-r--r-- | src/emap/map.c | 3 |
2 files changed, 5 insertions, 2 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index d17cc8a..48fc44b 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -138,8 +138,8 @@ MAP_SRC = emap/atcommand.c \ SHARED_CFLAGS = ${CFLAGS} -O3 -pipe -ffast-math -std=c11 -Wall -Wextra -Wno-sign-compare -Wno-unused -fno-omit-frame-pointer \ -DPCRE_SUPPORT -I../../.. -I../../../../3rdparty \ - -DPACKETVER=20150513 \ - -DevolPacketOffset=0 + -DPACKETVER=20181002 \ + -DevolPacketOffset=0x200 SHARED_LDFLAGS = -lm -avoid-version -Wl,--no-undefined if ENABLE_STATIC_BUILD diff --git a/src/emap/map.c b/src/emap/map.c index cc4bae4..cfbffef 100644 --- a/src/emap/map.c +++ b/src/emap/map.c @@ -409,6 +409,9 @@ void emap_setgatcell2(int16 m, j = x + y * map->list[m].xs; + if (map->list[m].cell == (struct mapcell *)0xdeadbeaf) + map->cellfromcache(&map->list[m]); + struct mapcell cell0 = map->gat2cell(gat); struct mapcell2 *cell = (struct mapcell2 *)&cell0; struct mapcell2 *cell2 = (struct mapcell2 *)&map->list[m].cell[j]; |