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))); }