Remove primitive support types constructor

This commit is contained in:
2023-10-03 09:52:04 +02:00
parent f852c564cd
commit af5855804f
7 changed files with 20 additions and 18 deletions

View File

@@ -24,7 +24,7 @@ namespace FontWriter {
for(auto& single_char : this->text_buffer) {
single_char.set_link_identitiy();
single_char->set_identitiy();
single_char->clut = GPU::PageClut(Assets::FontTIM.get_clut_x(), Assets::FontTIM.get_clut_y());
single_char->clut = GPU::PageClut::create(Assets::FontTIM.get_clut_x(), Assets::FontTIM.get_clut_y());
}
}