Fix clang-format of sectionTypeInfo array

This commit is contained in:
Rangi42
2025-01-27 18:20:13 -05:00
committed by Rangi
parent b8b60207f5
commit 9ebd2a7e8e

View File

@@ -6,6 +6,7 @@ using namespace std::literals;
// The default values are the most lax, as they are used as-is by RGBASM; only RGBLINK has the full // The default values are the most lax, as they are used as-is by RGBASM; only RGBLINK has the full
// info, so RGBASM's job is only to catch unconditional errors earlier. // info, so RGBASM's job is only to catch unconditional errors earlier.
// clang-format off: nested initializers
SectionTypeInfo sectionTypeInfo[SECTTYPE_INVALID] = { SectionTypeInfo sectionTypeInfo[SECTTYPE_INVALID] = {
{ {
.name = "WRAM0"s, .name = "WRAM0"s,
@@ -64,6 +65,7 @@ SectionTypeInfo sectionTypeInfo[SECTTYPE_INVALID] = {
.lastBank = 0, .lastBank = 0,
}, },
}; };
// clang-format on
char const * const sectionModNames[] = { char const * const sectionModNames[] = {
"regular", // SECTION_NORMAL "regular", // SECTION_NORMAL