add quit command

This commit is contained in:
2025-08-17 12:55:08 -05:00
parent c3310a036f
commit 91b93b5b1e
18 changed files with 186 additions and 79 deletions

View File

@@ -6,6 +6,7 @@
*/
#include "renderscene.h"
#include "display/overworld/renderoverworld.h"
renderscenecallback_t RENDER_SCENE_CALLBACKS[SCENE_COUNT] = {
[SCENE_INITIAL] = {
@@ -15,9 +16,9 @@ renderscenecallback_t RENDER_SCENE_CALLBACKS[SCENE_COUNT] = {
},
[SCENE_OVERWORLD] = {
.init = NULL,
.init = renderOverworldInit,
.draw = NULL,
.dispose = NULL
.dispose = renderOverworldDispose
},
};