From b674c5fcaa93b32fdffe419672c222596cdf74d9 Mon Sep 17 00:00:00 2001 From: Rangi Date: Wed, 3 Mar 2021 10:35:47 -0500 Subject: [PATCH] Comment refers to "built-in" symbols --- src/asm/output.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/asm/output.c b/src/asm/output.c index 3ba24671..37895745 100644 --- a/src/asm/output.c +++ b/src/asm/output.c @@ -473,7 +473,7 @@ static void registerUnregisteredSymbol(struct Symbol *symbol, void *arg) { (void)arg; // sym_ForEach requires a void* parameter, but we are not using it. - // Check for symbol->src, to skip any auto generated symbol from rgbasm + // Check for symbol->src, to skip any built-in symbol from rgbasm if (symbol->src && symbol->ID == -1) { registerSymbol(symbol); }