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

@@ -24,8 +24,6 @@
using namespace std::literals;
uint8_t fillByte;
struct UnionStackEntry {
uint32_t start;
uint32_t size;
@@ -782,7 +780,7 @@ void sect_Skip(uint32_t skip, bool ds) {
}
// We know we're in a code SECTION
while (skip--) {
writeByte(fillByte);
writeByte(options.padByte);
}
}
}