commit 742c52265f91dd9600bd8a6f33e6de454a40e033
parent 7a865f25ac2674a639b69f8202c053fea82ccc10
Author: Andrew Alderwick <andrew@alderwick.co.uk>
Date: Wed, 14 Jul 2021 20:17:39 +0100
Updated mkuxn-fast script to match uxnasm changes
Diffstat:
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/etc/mkuxn-fast.lua b/etc/mkuxn-fast.lua
@@ -228,7 +228,7 @@ end
i = 0
wanted = false
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
elseif l == '};' then
wanted = false
diff --git a/etc/mkuxn-fast.moon b/etc/mkuxn-fast.moon
@@ -164,7 +164,7 @@ for l in assert io.lines 'src/uxn.c'
i = 0
wanted = false
for l in assert io.lines 'src/uxnasm.c'
- if l == 'char ops[][4] = {'
+ if l == 'static char ops[][4] = {'
wanted = true
elseif l == '};'
wanted = false