From b88a98ebd2ce08ded95ace1a70916c1fe866e72c Mon Sep 17 00:00:00 2001 From: David Walter Seikel Date: Mon, 23 Jan 2012 22:20:50 +1000 Subject: Tweaked the output a little. --- LuaSL/src/LuaSL_main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'LuaSL/src/LuaSL_main.c') diff --git a/LuaSL/src/LuaSL_main.c b/LuaSL/src/LuaSL_main.c index 47e4881..4bd3bc5 100644 --- a/LuaSL/src/LuaSL_main.c +++ b/LuaSL/src/LuaSL_main.c @@ -212,7 +212,7 @@ main(int argc, char **argv) snprintf(buf, sizeof(buf), "%s/Test sim/objects", PACKAGE_DATA_DIR); eina_file_dir_list(buf, EINA_TRUE, dirList_cb, &game); diff = timeDiff(&thisTime2, &lastTime2); - printf("Compiling %d scripts took %f seconds, that's %f scripts per second.\n", scriptCount, diff, scriptCount / diff); + printf("Compiling %d LSL scripts took %f seconds, that's %f scripts per second.\n", scriptCount, diff, scriptCount / diff); lslCount = scriptCount; diff0 = diff; @@ -221,7 +221,7 @@ main(int argc, char **argv) snprintf(buf, sizeof(buf), "%s/testLua", PACKAGE_DATA_DIR); eina_file_dir_list(buf, EINA_TRUE, dirListLua_cb, &game); diff = timeDiff(&thisTime2, &lastTime2); - printf("Compiling %d Lua scripts took %f seconds, that's %f scripts per second. B-).\n", scriptCount, diff, scriptCount / diff); + printf("Compiling %d Lua scripts took %f seconds, that's %f scripts per second.\n\n", scriptCount, diff, scriptCount / diff); printf("Combined estimate of compiling speed is %f scripts per second.\n", 1 / ((diff0 / lslCount) + (diff / scriptCount))); -- cgit v1.1