diff options
author | epoque11 <epoque11@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-04-30 13:13:07 +0000 |
---|---|---|
committer | epoque11 <epoque11@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-04-30 13:13:07 +0000 |
commit | 1dcb68789e4c0ee476f9cdd6c40f036630141705 (patch) | |
tree | 59c0e4da23d654d35204dc9a5dd4c7664169f023 /src/map/npc.h | |
parent | a3cc6d2c92719f2a20702aad57a84d354fbdeecb (diff) | |
download | hercules-1dcb68789e4c0ee476f9cdd6c40f036630141705.tar.gz hercules-1dcb68789e4c0ee476f9cdd6c40f036630141705.tar.bz2 hercules-1dcb68789e4c0ee476f9cdd6c40f036630141705.tar.xz hercules-1dcb68789e4c0ee476f9cdd6c40f036630141705.zip |
- Fixed compilation errors due to unnamed argument in npc_unload (bugreport:5676)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@16020 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/npc.h')
-rw-r--r-- | src/map/npc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/npc.h b/src/map/npc.h index de25c09a3..5e180220c 100644 --- a/src/map/npc.h +++ b/src/map/npc.h @@ -153,7 +153,7 @@ int npc_gettimerevent_tick(struct npc_data* nd); int npc_settimerevent_tick(struct npc_data* nd, int newtimer); int npc_remove_map(struct npc_data* nd); void npc_unload_duplicates (struct npc_data* nd); -int npc_unload(struct npc_data* nd, bool); +int npc_unload(struct npc_data* nd, bool single); int npc_reload(void); void npc_read_event_script(void); int npc_script_event(struct map_session_data* sd, enum npce_event type); |