Refactor GfxGroupEditor

This commit is contained in:
scawful
2024-08-25 14:33:01 -04:00
parent 6465486443
commit 3eaf320ff4
2 changed files with 2 additions and 17 deletions

View File

@@ -228,7 +228,7 @@ void DrawPaletteFromPaletteGroup(gfx::SnesPalette &palette) {
if (palette.empty()) {
return;
}
for (int n = 0; n < palette.size(); n++) {
for (size_t n = 0; n < palette.size(); n++) {
PushID(n);
if ((n % 8) != 0) SameLine(0.0f, GetStyle().ItemSpacing.y);