From c0fc18cee09b3b47c85b282f70944c425d95f98a Mon Sep 17 00:00:00 2001 From: Gary Talent Date: Wed, 22 Jan 2025 23:22:01 -0600 Subject: [PATCH] [jasper/world/studio] Change Person TS template type to V5 --- src/jasper/modules/world/src/studio/studiomodule.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/jasper/modules/world/src/studio/studiomodule.cpp b/src/jasper/modules/world/src/studio/studiomodule.cpp index 3548c50..67411d3 100644 --- a/src/jasper/modules/world/src/studio/studiomodule.cpp +++ b/src/jasper/modules/world/src/studio/studiomodule.cpp @@ -33,10 +33,10 @@ static class: public studio::Module { ox::Vector> out; // Person TileSheet { - ngfx::TileSheetV4 ts; + ngfx::TileSheetV5 ts; ts.bpp = 4; auto const addSheet = [&ts]( - ngfx::TileSheetV4::SubSheet &ss, + ngfx::TileSheetV5::SubSheet &ss, ox::StringParam name, int const cols, int const rows) -> auto& { @@ -52,7 +52,7 @@ static class: public studio::Module { addSheetSet("Back"); addSheetSet("Left"); addSheetSet("Right"); - out.emplace_back(ox::make>( + out.emplace_back(ox::make>( "Jasper World Person", std::move(ts))); }