From 91a7129f8f8cbda8f6dd8302ef6e8e17e4004023 Mon Sep 17 00:00:00 2001 From: Gary Talent Date: Wed, 2 Apr 2025 01:07:26 -0500 Subject: [PATCH] [nostalgia/gfx/keel] Cleanup --- src/nostalgia/modules/gfx/src/keel/typeconv.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/nostalgia/modules/gfx/src/keel/typeconv.cpp b/src/nostalgia/modules/gfx/src/keel/typeconv.cpp index c2448e4f..927c1671 100644 --- a/src/nostalgia/modules/gfx/src/keel/typeconv.cpp +++ b/src/nostalgia/modules/gfx/src/keel/typeconv.cpp @@ -183,8 +183,8 @@ ox::Error TileSheetV4ToTileSheetV5Converter::convert( keel::Context&, TileSheetV4 &src, TileSheetV5 &dst) const noexcept { - dst.bpp = src.bpp; - dst.idIt = src.idIt; + dst.bpp = src.bpp; + dst.idIt = src.idIt; OX_RETURN_ERROR(src.defaultPalette.getPath().moveTo(dst.defaultPalette)); convertSubsheet(dst.bpp, src.subsheet, dst.subsheet); return {};