Update Font System

This commit is contained in:
2024-05-19 11:35:59 +02:00
parent a1de7e9d13
commit a9600f8d02
4 changed files with 17 additions and 9 deletions

View File

@ -26,8 +26,10 @@ int main() {
RD7::Ftrace::Beg("app", "app_init");
RD7::Init::Main("rd7tf");
RD7::FadeIn();
auto fnt = RD7::Font::New("romfs:/roboto_bold.bcfnt");
RD7::TextFont(fnt);
// IdbServer();
RD7::Init::NdspFirm();
//RD7::Init::NdspFirm();
RD7::Scene::Load(std::make_unique<Sample>());
RD7::Ftrace::End("app", "app_init");
while (RD7::MainLoop()) {
@ -41,6 +43,5 @@ int main() {
RD7::FrameEnd();
RD7::Ftrace::End("app", "app_mainloop");
}
return 0;
}