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.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/LuaSL/src/LuaSL_compile.c b/LuaSL/src/LuaSL_compile.c
index 52db12a..9e4d4c1 100644
--- a/LuaSL/src/LuaSL_compile.c
+++ b/LuaSL/src/LuaSL_compile.c
@@ -1296,7 +1296,7 @@ boolean compileLSL(gameGlobals *game, char *script, boolean doConstants)
1296 return FALSE; 1296 return FALSE;
1297 } 1297 }
1298 printf("\n"); 1298 printf("\n");
1299 PI("Opened %s.", compiler.fileName); 1299 PD("Compiling %s.", compiler.fileName);
1300 compiler.ast = NULL; 1300 compiler.ast = NULL;
1301 compiler.lval = newLeaf(LSL_UNKNOWN, NULL, NULL); 1301 compiler.lval = newLeaf(LSL_UNKNOWN, NULL, NULL);
1302 // Text editors usually start counting at 1, even programmers editors. 1302 // Text editors usually start counting at 1, even programmers editors.
@@ -1346,7 +1346,7 @@ boolean compileLSL(gameGlobals *game, char *script, boolean doConstants)
1346 } 1346 }
1347 } 1347 }
1348 secondPass(&compiler, compiler.ast); 1348 secondPass(&compiler, compiler.ast);
1349 PI("Second pass completed."); 1349 PD("Second pass completed.");
1350 } 1350 }
1351 1351
1352 if (doConstants) 1352 if (doConstants)