Sound framework improvements

This commit is contained in:
Anuken
2020-11-12 18:07:26 -05:00
parent d163cacb6a
commit d1d3ef0c67
24 changed files with 162 additions and 355 deletions

View File

@@ -100,7 +100,7 @@ public class LAssembler{
int index = 0;
for(String line : lines){
//comments
if(line.startsWith("#")) continue;
if(line.startsWith("#") || line.isEmpty()) continue;
//remove trailing semicolons in case someone adds them in for no reason
if(line.endsWith(";")) line = line.substring(0, line.length() - 1);