1
0
Fork 0
mirror of https://github.com/notwa/lips synced 2024-04-23 22:53:22 -07:00

fix incbin parsing again

This commit is contained in:
Connor Olding 2016-11-27 20:01:23 -08:00
parent 3c1cbf0901
commit ad0269cc61

View File

@ -329,6 +329,7 @@ function Lexer:lex_include_binary(_yield)
local data = util.readfile(fn, true)
_yield('DIR', 'BIN', fn, 0)
_yield('STRING', data, fn, 0)
_yield('EOF', self.EOF, self.fn, self.line)
end
function Lexer:lex_expression(yield)