Fix some numeric bases in RGBLINK output

This commit is contained in:
Rangi42
2024-03-06 17:43:26 -05:00
parent 75105016f7
commit 6d4a61f51d
3 changed files with 4 additions and 4 deletions

View File

@@ -274,7 +274,7 @@ static void placeSection(Section &section) {
snprintf(
where,
sizeof(where),
"in bank $%02" PRIx32 " with align mask %" PRIx16,
"in bank $%02" PRIx32 " with align mask $%" PRIx16,
section.bank,
(uint16_t)~section.alignMask
);
@@ -287,7 +287,7 @@ static void placeSection(Section &section) {
snprintf(
where,
sizeof(where),
"with align mask %" PRIx16 " and offset %" PRIx16,
"with align mask $%" PRIx16 " and offset $%" PRIx16,
(uint16_t)~section.alignMask,
section.alignOfs
);