aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/LuaSL/src/LuaSL_compile.c
diff options
context:
space:
mode:
Diffstat (limited to 'LuaSL/src/LuaSL_compile.c')
-rw-r--r--LuaSL/src/LuaSL_compile.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/LuaSL/src/LuaSL_compile.c b/LuaSL/src/LuaSL_compile.c
index 99ba53e..c28a6fc 100644
--- a/LuaSL/src/LuaSL_compile.c
+++ b/LuaSL/src/LuaSL_compile.c
@@ -518,7 +518,7 @@ void beginBlock(LuaSL_compiler *compiler, LSL_Leaf *block)
518 518
519 if (blok) 519 if (blok)
520 { 520 {
521 blok->variables = eina_hash_string_superfast_new(burnLeaf); 521 blok->variables = eina_hash_stringshared_new(burnLeaf);
522 block->value.blockValue = blok; 522 block->value.blockValue = blok;
523 blok->outerBlock = compiler->currentBlock; 523 blok->outerBlock = compiler->currentBlock;
524 compiler->currentBlock = blok; 524 compiler->currentBlock = blok;
@@ -998,9 +998,9 @@ Eina_Bool compileLSL(gameGlobals *game, char *script)
998 998
999 memset(&compiler, 0, sizeof(LuaSL_compiler)); 999 memset(&compiler, 0, sizeof(LuaSL_compiler));
1000 compiler.game = game; 1000 compiler.game = game;
1001 compiler.script.functions = eina_hash_string_superfast_new(burnLeaf); 1001 compiler.script.functions = eina_hash_stringshared_new(burnLeaf);
1002 compiler.script.states = eina_hash_string_superfast_new(burnLeaf); 1002 compiler.script.states = eina_hash_stringshared_new(burnLeaf);
1003 compiler.script.variables = eina_hash_string_superfast_new(burnLeaf); 1003 compiler.script.variables = eina_hash_stringshared_new(burnLeaf);
1004 compiler.ignorableText = eina_strbuf_new(); 1004 compiler.ignorableText = eina_strbuf_new();
1005 1005
1006 strncpy(compiler.fileName, script, PATH_MAX - 1); 1006 strncpy(compiler.fileName, script, PATH_MAX - 1);