Fixed some bugs with buffers during font building

This commit is contained in:
2023-05-31 10:47:06 -07:00
parent 4ae838945e
commit 1b84efe0d6
14 changed files with 186 additions and 76 deletions

View File

@@ -10,6 +10,6 @@
using namespace Dawn;
Scene * Dawn::dawnGameGetInitialScene(DawnGame *game) {
// return new HelloWorldScene(game);
return new Scene1Prologue(game);
return new HelloWorldScene(game);
// return new Scene1Prologue(game);
}