diff --git a/examples/PoolBox/application/src/main.cpp b/examples/PoolBox/application/src/main.cpp index 09163fb0..0b08e380 100644 --- a/examples/PoolBox/application/src/main.cpp +++ b/examples/PoolBox/application/src/main.cpp @@ -5,14 +5,21 @@ #include #include #include +#include #include #include using namespace JabyEngine; +using NewFontWriter = ::JabyEngine::FontWriter; static object::Paco paco; static void setup() { + static constexpr auto VRAMFontDst = GPU::PositionU16::create(320, 0); + + DefaultFont::load(VRAMFontDst); + NewFontWriter::setup(VRAMFontDst, DefaultFont::Info); + Assets::load_for_main(); FontWriter::FontWriter::setup(); @@ -35,7 +42,6 @@ static void render() { } void main() { - test(); setup(); Overlay::TimerTest::mesaure_busy_loop();