mirror of
https://git.sr.ht/~rabbits/uxn
synced 2024-11-24 14:55:11 +00:00
Updated mkuxn-fast script to match uxnasm changes
This commit is contained in:
parent
7a865f25ac
commit
742c52265f
2 changed files with 2 additions and 2 deletions
|
@ -228,7 +228,7 @@ end
|
||||||
i = 0
|
i = 0
|
||||||
wanted = false
|
wanted = false
|
||||||
for l in assert(io.lines('src/uxnasm.c')) do
|
for l in assert(io.lines('src/uxnasm.c')) do
|
||||||
if l == 'char ops[][4] = {' then
|
if l == 'static char ops[][4] = {' then
|
||||||
wanted = true
|
wanted = true
|
||||||
elseif l == '};' then
|
elseif l == '};' then
|
||||||
wanted = false
|
wanted = false
|
||||||
|
|
|
@ -164,7 +164,7 @@ for l in assert io.lines 'src/uxn.c'
|
||||||
i = 0
|
i = 0
|
||||||
wanted = false
|
wanted = false
|
||||||
for l in assert io.lines 'src/uxnasm.c'
|
for l in assert io.lines 'src/uxnasm.c'
|
||||||
if l == 'char ops[][4] = {'
|
if l == 'static char ops[][4] = {'
|
||||||
wanted = true
|
wanted = true
|
||||||
elseif l == '};'
|
elseif l == '};'
|
||||||
wanted = false
|
wanted = false
|
||||||
|
|
Loading…
Reference in a new issue