diff options
author | (no author) <(no author)@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2005-01-23 22:01:12 +0000 |
---|---|---|
committer | (no author) <(no author)@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2005-01-23 22:01:12 +0000 |
commit | 4426eb53903895faa1e3db6c7db6c75716906dd1 (patch) | |
tree | 2e23075bc2b0de6a2e7a222a17579fe02ffa3a52 /src | |
parent | 1310c6d32bed847857db9ca574b7a69fda640620 (diff) | |
download | hercules-4426eb53903895faa1e3db6c7db6c75716906dd1.tar.gz hercules-4426eb53903895faa1e3db6c7db6c75716906dd1.tar.bz2 hercules-4426eb53903895faa1e3db6c7db6c75716906dd1.tar.xz hercules-4426eb53903895faa1e3db6c7db6c75716906dd1.zip |
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/branches/stable@971 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src')
-rw-r--r-- | src/map/map.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/map.c b/src/map/map.c index f4124eab8..dc92d4113 100644 --- a/src/map/map.c +++ b/src/map/map.c @@ -1939,7 +1939,7 @@ static int map_readmap(int m,char *fn, char *alias, int *map_cache, int maxmap) xs=map[m].xs=*(int*)(gat+6); ys=map[m].ys=*(int*)(gat+10); - map[m].gat = (char *)aCallocA(s = map[m].xs * map[m].ys,sizeof(char)); + map[m].gat = (unsigned char *)aCallocA(s = map[m].xs * map[m].ys,sizeof(unsigned char)); wh=map_waterheight(map[m].name); for(y=0;y<ys;y++){ p=(struct gat_1cell*)(gat+y*xs*20+14); |