mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-21 02:32:06 +00:00
Fix some numeric bases in RGBLINK output
This commit is contained in:
@@ -274,7 +274,7 @@ static void placeSection(Section §ion) {
|
||||
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 §ion) {
|
||||
snprintf(
|
||||
where,
|
||||
sizeof(where),
|
||||
"with align mask %" PRIx16 " and offset %" PRIx16,
|
||||
"with align mask $%" PRIx16 " and offset $%" PRIx16,
|
||||
(uint16_t)~section.alignMask,
|
||||
section.alignOfs
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user