From 742c52265f91dd9600bd8a6f33e6de454a40e033 Mon Sep 17 00:00:00 2001 From: Andrew Alderwick Date: Wed, 14 Jul 2021 20:17:39 +0100 Subject: [PATCH] Updated mkuxn-fast script to match uxnasm changes --- etc/mkuxn-fast.lua | 2 +- etc/mkuxn-fast.moon | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/etc/mkuxn-fast.lua b/etc/mkuxn-fast.lua index 876a2c5..7e40cd4 100644 --- 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 index e6027d1..b6f1a60 100644 --- 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