summaryrefslogtreecommitdiff
path: root/src/map/script.h
diff options
context:
space:
mode:
authorFlavioJS <FlavioJS@54d463be-8e91-2dee-dedb-b68131a5f0ec>2008-04-23 04:35:32 +0000
committerFlavioJS <FlavioJS@54d463be-8e91-2dee-dedb-b68131a5f0ec>2008-04-23 04:35:32 +0000
commit4e45ec34bb37eb515480cfc42dce7d7380a5e235 (patch)
tree0801187366e76552f7862a6206a5cbd2df4baf06 /src/map/script.h
parentae6efe1e4bb013f18d79319f2375695fe241d64f (diff)
downloadhercules-4e45ec34bb37eb515480cfc42dce7d7380a5e235.tar.gz
hercules-4e45ec34bb37eb515480cfc42dce7d7380a5e235.tar.bz2
hercules-4e45ec34bb37eb515480cfc42dce7d7380a5e235.tar.xz
hercules-4e45ec34bb37eb515480cfc42dce7d7380a5e235.zip
* Script parse errors displayed with one ShowError instead of several ShowMessage's.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@12637 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/script.h')
-rw-r--r--src/map/script.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/map/script.h b/src/map/script.h
index 7f07185a8..981c5b985 100644
--- a/src/map/script.h
+++ b/src/map/script.h
@@ -118,8 +118,7 @@ enum script_parse_options {
};
const char* skip_space(const char* p);
-const char* script_print_line(const char* p, const char* mark, int line);
-void script_error(const char *src,const char *file,int start_line, const char *error_msg, const char *error_pos);
+void script_error(const char* src, const char* file, int start_line, const char* error_msg, const char* error_pos);
struct script_code* parse_script(const char* src,const char* file,int line,int options);
void run_script_sub(struct script_code *rootscript,int pos,int rid,int oid, char* file, int lineno);