diff options
author | Lance <Lance@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-05-29 17:28:26 +0000 |
---|---|---|
committer | Lance <Lance@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-05-29 17:28:26 +0000 |
commit | 21b1dac6905f6e74054c567d6af3236f2de94dbc (patch) | |
tree | 91f55088454a3aa1e5fa35bfbbb036022b8f4cf7 | |
parent | 1e4cfc9c161efa98ff9a9b53538a8263075921f8 (diff) | |
download | hercules-21b1dac6905f6e74054c567d6af3236f2de94dbc.tar.gz hercules-21b1dac6905f6e74054c567d6af3236f2de94dbc.tar.bz2 hercules-21b1dac6905f6e74054c567d6af3236f2de94dbc.tar.xz hercules-21b1dac6905f6e74054c567d6af3236f2de94dbc.zip |
[Fixed]:
- Declaration of int map_getcellp(struct map_data*,int,int,cell_t);
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@6825 54d463be-8e91-2dee-dedb-b68131a5f0ec
-rw-r--r-- | Changelog-Trunk.txt | 2 | ||||
-rw-r--r-- | src/map/map.h | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt index fd1f4cc02..36c192f0e 100644 --- a/Changelog-Trunk.txt +++ b/Changelog-Trunk.txt @@ -4,6 +4,8 @@ AS OF SVN REV. 5091, WE ARE NOW USING TRUNK. ALL UNTESTED BUGFIXES/FEATURES GO IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK.
2006/05/29
+ * [Fixed]:
+ - Declaration of int map_getcellp(struct map_data*,int,int,cell_t);
* Removed Undead being inmune to poison status. [Skotlex]
* Removed speed penalty from SC_SKA [Skotlex]
* Fixed SC_SPURT triggering on Soul Linkers. [Skotlex]
diff --git a/src/map/map.h b/src/map/map.h index 2043f65b6..a4d64fc05 100644 --- a/src/map/map.h +++ b/src/map/map.h @@ -1280,7 +1280,7 @@ extern char db_path[256]; // gat?֧
int map_getcell(int,int,int,cell_t);
-int map_getcellp(struct map_data*,int,int,int);
+int map_getcellp(struct map_data*,int,int,cell_t);
void map_setcell(int,int,int,int);
extern int map_read_flag; // 0: grfիE1: ëE2: ëE?)
enum {
|