Group extern RGBASM variables in an Options struct

This commit is contained in:
Rangi42
2025-07-21 19:01:23 -04:00
parent d652212857
commit d1493a9f96
18 changed files with 133 additions and 156 deletions

View File

@@ -1671,13 +1671,13 @@ iconst:
precision_arg:
%empty {
$$ = fix_Precision();
$$ = options.fixPrecision;
}
| COMMA iconst {
$$ = $2;
if ($$ < 1 || $$ > 31) {
::error("Fixed-point precision must be between 1 and 31, not %" PRId32, $$);
$$ = fix_Precision();
$$ = options.fixPrecision;
}
}
;