diff options
Diffstat (limited to 'src/map/script.h')
-rw-r--r-- | src/map/script.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/map/script.h b/src/map/script.h index 4152999d6..b207bd36e 100644 --- a/src/map/script.h +++ b/src/map/script.h @@ -44,8 +44,10 @@ struct script_code { }; struct script_stack { - int sp,sp_max,defsp; - struct script_data *stack_data; + int sp;// number of entries in the stack + int sp_max;// capacity of the stack + int defsp; + struct script_data *stack_data;// stack struct linkdb_node **var_function; // 関数依存変数 }; |