aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/LuaSL/src/LuaSL_main.c
diff options
context:
space:
mode:
authorDavid Walter Seikel2012-01-17 13:15:15 +1000
committerDavid Walter Seikel2012-01-17 13:15:15 +1000
commite235a097751de7ad97563997215f76761b3db609 (patch)
tree3dc1098de9770e8b165ed8dbc4128f5f2245afaa /LuaSL/src/LuaSL_main.c
parentAdd a newline at the end of the file. lol (diff)
downloadSledjHamr-e235a097751de7ad97563997215f76761b3db609.zip
SledjHamr-e235a097751de7ad97563997215f76761b3db609.tar.gz
SledjHamr-e235a097751de7ad97563997215f76761b3db609.tar.bz2
SledjHamr-e235a097751de7ad97563997215f76761b3db609.tar.xz
Use EFL logging.
Diffstat (limited to '')
-rw-r--r--LuaSL/src/LuaSL_main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/LuaSL/src/LuaSL_main.c b/LuaSL/src/LuaSL_main.c
index fb2a8ba..b1141c6 100644
--- a/LuaSL/src/LuaSL_main.c
+++ b/LuaSL/src/LuaSL_main.c
@@ -161,13 +161,13 @@ main(int argc, char **argv)
161 edje_object_signal_callback_add(game.edje, "*", "game_*", _edje_signal_cb, &game); 161 edje_object_signal_callback_add(game.edje, "*", "game_*", _edje_signal_cb, &game);
162 162
163 // Setup for the compler. 163 // Setup for the compler.
164 compilerSetup(); 164 compilerSetup(&game);
165// snprintf(buf, sizeof(buf), "%s/Test sim/objects/onefang's test bed/~run", PACKAGE_DATA_DIR); 165// snprintf(buf, sizeof(buf), "%s/Test sim/objects/onefang's test bed/~run", PACKAGE_DATA_DIR);
166 snprintf(buf, sizeof(buf), "%s/test2.lsl", PACKAGE_DATA_DIR); 166 snprintf(buf, sizeof(buf), "%s/test2.lsl", PACKAGE_DATA_DIR);
167 if (compileLSL(&game, buf)) 167 if (compileLSL(&game, buf))
168 PIm("Against all odds, the compile of %s worked! lol", buf); 168 PIm("Against all odds, the compile of %s worked! lol", buf);
169 else 169 else
170 PEm("The compile of %s failed, as expected!", buf); 170 PEm("The compile of %s failed!", buf);
171 171
172// ecore_main_loop_begin(); 172// ecore_main_loop_begin();
173 173