summaryrefslogtreecommitdiff
path: root/src/map/map.h
diff options
context:
space:
mode:
author(no author) <(no author)@54d463be-8e91-2dee-dedb-b68131a5f0ec>2005-01-23 21:52:55 +0000
committer(no author) <(no author)@54d463be-8e91-2dee-dedb-b68131a5f0ec>2005-01-23 21:52:55 +0000
commitae093dbdc0e90c640d22e7d3c027ce0288e8625e (patch)
tree90a2611205ea7d4deb6b1c961233036e94cd6d2e /src/map/map.h
parent2c5fabbc0b492cb5456e670ce9eb2352a11d5e3b (diff)
downloadhercules-ae093dbdc0e90c640d22e7d3c027ce0288e8625e.tar.gz
hercules-ae093dbdc0e90c640d22e7d3c027ce0288e8625e.tar.bz2
hercules-ae093dbdc0e90c640d22e7d3c027ce0288e8625e.tar.xz
hercules-ae093dbdc0e90c640d22e7d3c027ce0288e8625e.zip
Made some more changes, reverted some old ones
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/branches/stable@969 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/map.h')
-rw-r--r--src/map/map.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/map.h b/src/map/map.h
index 1b699b960..d4f673d6a 100644
--- a/src/map/map.h
+++ b/src/map/map.h
@@ -510,7 +510,7 @@ enum {
struct map_data {
char name[24];
- char *gat; // NULLなら下のmap_data_other_serverとして扱う
+ unsigned char *gat; // NULLなら下のmap_data_other_serverとして扱う
char *alias; // [MouseJstr]
int *gat_fileused[MAX_CELL_TYPE+1+1]; //もしビットマップを使うならこちらを使う、
//上のgatはキャストされてgat_fileused[0]に指す
@@ -563,7 +563,7 @@ struct map_data {
};
struct map_data_other_server {
char name[24];
- char *gat; // NULL固定にして判断
+ unsigned char *gat; // NULL固定にして判断
unsigned long ip;
unsigned int port;
};