summaryrefslogtreecommitdiff
path: root/src/map/map.h
diff options
context:
space:
mode:
authorFlavioJS <FlavioJS@54d463be-8e91-2dee-dedb-b68131a5f0ec>2007-12-27 05:47:50 +0000
committerFlavioJS <FlavioJS@54d463be-8e91-2dee-dedb-b68131a5f0ec>2007-12-27 05:47:50 +0000
commit957ecdfbb008733cded26a6dab20c7ac13814f58 (patch)
tree4d639c3e82d23437b54f14ca56bbfcf1bb5d6ffc /src/map/map.h
parent1307b441cd2cdc94bdde1999d48aefb55d91e082 (diff)
downloadhercules-957ecdfbb008733cded26a6dab20c7ac13814f58.tar.gz
hercules-957ecdfbb008733cded26a6dab20c7ac13814f58.tar.bz2
hercules-957ecdfbb008733cded26a6dab20c7ac13814f58.tar.xz
hercules-957ecdfbb008733cded26a6dab20c7ac13814f58.zip
* Corrected description of scope and npc variables in script_commands.txt.
* Made temporary character string variables not have a limited length. (now all temporary string variables don't have limited length) * Made temporary character variables reuse free positions. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11984 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/map.h')
-rw-r--r--src/map/map.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/map.h b/src/map/map.h
index ecdc72c4f..24b6eb052 100644
--- a/src/map/map.h
+++ b/src/map/map.h
@@ -365,7 +365,7 @@ struct script_reg {
};
struct script_regstr {
int index;
- char data[256];
+ char* data;
};
struct status_change_entry {