summaryrefslogtreecommitdiff
path: root/src/map/script.c
diff options
context:
space:
mode:
authorai4rei <ai4rei@54d463be-8e91-2dee-dedb-b68131a5f0ec>2011-01-15 20:12:51 +0000
committerai4rei <ai4rei@54d463be-8e91-2dee-dedb-b68131a5f0ec>2011-01-15 20:12:51 +0000
commit17aeb75dcd66b99d540b6fc37604a4c8037ffec5 (patch)
tree186c55e415a03d50674fa9b742bbd9778dd54f43 /src/map/script.c
parent7b5a33083c2b411e37f9412091937c18dbe92e29 (diff)
downloadhercules-17aeb75dcd66b99d540b6fc37604a4c8037ffec5.tar.gz
hercules-17aeb75dcd66b99d540b6fc37604a4c8037ffec5.tar.bz2
hercules-17aeb75dcd66b99d540b6fc37604a4c8037ffec5.tar.xz
hercules-17aeb75dcd66b99d540b6fc37604a4c8037ffec5.zip
* Various accumulated insignificant fixes to documentation, examples and comments.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@14674 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/script.c')
-rw-r--r--src/map/script.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/map/script.c b/src/map/script.c
index 62462ce66..ed1e13aee 100644
--- a/src/map/script.c
+++ b/src/map/script.c
@@ -2133,9 +2133,9 @@ struct script_code* parse_script(const char *src,const char *file,int line,int o
#ifdef DEBUG_DISP
for(i=0;i<script_pos;i++){
- if((i&15)==0) printf("%04x : ",i);
+ if((i&15)==0) ShowMessage("%04x : ",i);
ShowMessage("%02x ",script_buf[i]);
- if((i&15)==15) printf("\n");
+ if((i&15)==15) ShowMessage("\n");
}
ShowMessage("\n");
#endif
@@ -11663,9 +11663,6 @@ BUILDIN_FUNC(jump_zero)
pos=script_getnum(st,3);
st->pos=pos;
st->state=GOTO;
- // printf("script: jump_zero: jumpto : %d\n",pos);
- } else {
- // printf("script: jump_zero: fail\n");
}
return 0;
}