diff --git a/src/nostalgia/modules/core/src/keel/typeconv.cpp b/src/nostalgia/modules/core/src/keel/typeconv.cpp index 61287324..b7d8f318 100644 --- a/src/nostalgia/modules/core/src/keel/typeconv.cpp +++ b/src/nostalgia/modules/core/src/keel/typeconv.cpp @@ -29,7 +29,7 @@ ox::Error PaletteV2ToPaletteV3Converter::convert( dst.pages = std::move(src.pages); if (!dst.pages.empty()) { for (size_t i = 0; i < dst.pages[0].size(); ++i) { - dst.colorInfo.emplace_back(ox::sfmt("Color {}", i)); + dst.colorInfo.emplace_back(ox::sfmt("Color {}", i + 1)); } } return {};