Add some more trailing commas

This commit is contained in:
Rangi42
2024-03-04 22:53:11 -05:00
parent e74073e480
commit 74539f08ba
4 changed files with 22 additions and 15 deletions

View File

@@ -579,12 +579,12 @@ static void parseGBCFile(std::filebuf &file) {
break;
}
options.palSpec.push_back(
{Rgba::fromCGBColor(readLE<uint16_t>(&buf[0])),
Rgba::fromCGBColor(readLE<uint16_t>(&buf[2])),
Rgba::fromCGBColor(readLE<uint16_t>(&buf[4])),
Rgba::fromCGBColor(readLE<uint16_t>(&buf[6]))}
);
options.palSpec.push_back({
Rgba::fromCGBColor(readLE<uint16_t>(&buf[0])),
Rgba::fromCGBColor(readLE<uint16_t>(&buf[2])),
Rgba::fromCGBColor(readLE<uint16_t>(&buf[4])),
Rgba::fromCGBColor(readLE<uint16_t>(&buf[6])),
});
}
}