aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/GuiLua/GuiLua.c
diff options
context:
space:
mode:
authorDavid Walter Seikel2014-05-13 18:13:20 +1000
committerDavid Walter Seikel2014-05-13 18:13:20 +1000
commit443133b9b612899777a93fe9371b5f5b27a95984 (patch)
tree8e789d9c6d006b274ab538627770da33941a769e /src/GuiLua/GuiLua.c
parentAdd a TCP link between love and extantz, and have love pass on some of the co... (diff)
downloadSledjHamr-443133b9b612899777a93fe9371b5f5b27a95984.zip
SledjHamr-443133b9b612899777a93fe9371b5f5b27a95984.tar.gz
SledjHamr-443133b9b612899777a93fe9371b5f5b27a95984.tar.bz2
SledjHamr-443133b9b612899777a93fe9371b5f5b27a95984.tar.xz
GuiLuaLoad() now returns the GuiLua it loaded, and adds the name. Use that for the purkle load in extantz.
Diffstat (limited to 'src/GuiLua/GuiLua.c')
-rw-r--r--src/GuiLua/GuiLua.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/GuiLua/GuiLua.c b/src/GuiLua/GuiLua.c
index c845ff1..d960da9 100644
--- a/src/GuiLua/GuiLua.c
+++ b/src/GuiLua/GuiLua.c
@@ -429,12 +429,15 @@ GuiLua *GuiLuaDo(int argc, char **argv, winFang *parent, EPhysics_World *world)
429 return result; 429 return result;
430} 430}
431 431
432void GuiLuaLoad(char *module, winFang *parent, EPhysics_World *world) 432GuiLua *GuiLuaLoad(char *module, winFang *parent, EPhysics_World *world)
433{ 433{
434 GuiLua *result;
434 char *args[] = {"GuiLUa", "-l", ""}; 435 char *args[] = {"GuiLUa", "-l", ""};
435 436
436 args[2] = module; 437 args[2] = module;
437 GuiLuaDo(3, args, parent, world); 438 result = GuiLuaDo(3, args, parent, world);
439 result->name = module;
440 return result;
438} 441}
439 442
440void GuiLuaDel(GuiLua *gl) 443void GuiLuaDel(GuiLua *gl)