diff options
Diffstat (limited to '')
-rw-r--r-- | LuaSL/src/LuaSL_main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/LuaSL/src/LuaSL_main.c b/LuaSL/src/LuaSL_main.c index 582ba95..759995b 100644 --- a/LuaSL/src/LuaSL_main.c +++ b/LuaSL/src/LuaSL_main.c | |||
@@ -49,7 +49,7 @@ static void resetScript(script *victim) | |||
49 | // TODO - now what? | 49 | // TODO - now what? |
50 | } | 50 | } |
51 | 51 | ||
52 | static void _sendBack(void * data) | 52 | void scriptSendBack(void * data) |
53 | { | 53 | { |
54 | scriptMessage *message = data; | 54 | scriptMessage *message = data; |
55 | gameGlobals *game = message->script->game; | 55 | gameGlobals *game = message->script->game; |
@@ -179,7 +179,7 @@ static Eina_Bool _data(void *data, int type __UNUSED__, Ecore_Con_Event_Client_D | |||
179 | if (me) | 179 | if (me) |
180 | { | 180 | { |
181 | sprintf(buf, "%s.lua.out", me->fileName); | 181 | sprintf(buf, "%s.lua.out", me->fileName); |
182 | newProc(buf, TRUE, (Ecore_Cb) _sendBack, me); | 182 | newProc(buf, TRUE, me); |
183 | } | 183 | } |
184 | } | 184 | } |
185 | else if (0 == strcmp(command, "exit()")) | 185 | else if (0 == strcmp(command, "exit()")) |