diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-05-02 20:05:26 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-05-02 20:05:26 +0300 |
commit | a0a3f089429d10105c0b29122adacd29674ffba4 (patch) | |
tree | d248d9ea191107dad03798b05253eec03569aad2 /src | |
parent | 60fe28ca3dcacfbabe57273e00addcceac6b2c02 (diff) | |
download | evol-hercules-a0a3f089429d10105c0b29122adacd29674ffba4.tar.gz evol-hercules-a0a3f089429d10105c0b29122adacd29674ffba4.tar.bz2 evol-hercules-a0a3f089429d10105c0b29122adacd29674ffba4.tar.xz evol-hercules-a0a3f089429d10105c0b29122adacd29674ffba4.zip |
Fix hook function prototype error.
Diffstat (limited to 'src')
-rw-r--r-- | src/emap/map.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emap/map.c b/src/emap/map.c index 4fef163..f2d027b 100644 --- a/src/emap/map.c +++ b/src/emap/map.c @@ -414,7 +414,7 @@ bool emap_iwall_set_pre(int16 *m __attribute__ ((unused)), int *size __attribute__ ((unused)), int8 *dir __attribute__ ((unused)), bool *shootable __attribute__ ((unused)), - const char *wall_namePtr __attribute__ ((unused))) + const char **wall_namePtr __attribute__ ((unused))) { ShowError("Unsupported set wall function\n"); hookStop(); |