From 0d8ba1b15410fe413f7bc5bfc93691a7bedf0cfd Mon Sep 17 00:00:00 2001 From: Gary Talent Date: Sun, 23 Feb 2025 23:21:59 -0600 Subject: [PATCH] [nostalgia/gfx] Cleanup formatting mistake --- src/nostalgia/modules/gfx/src/keel/typeconv.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nostalgia/modules/gfx/src/keel/typeconv.cpp b/src/nostalgia/modules/gfx/src/keel/typeconv.cpp index 93b92b48..c2448e4f 100644 --- a/src/nostalgia/modules/gfx/src/keel/typeconv.cpp +++ b/src/nostalgia/modules/gfx/src/keel/typeconv.cpp @@ -169,7 +169,7 @@ void TileSheetV4ToTileSheetV5Converter::convertSubsheet( dst.pixels.emplace_back(static_cast(p & 0xf)); dst.pixels.emplace_back(static_cast(p >> 4)); } - oxAssert(dst.pixels.size() == src.pixels.size() *2, "mismatch"); + oxAssert(dst.pixels.size() == src.pixels.size() * 2, "mismatch"); } else { dst.pixels = std::move(src.pixels); }