dynos load on splash screen

This commit is contained in:
dominicentek 2023-08-27 12:01:51 +02:00
parent 2cfe1603be
commit 7b3c4aab04
2 changed files with 2 additions and 1 deletions

View file

@ -32,7 +32,6 @@ DYNOS_AT_STARTUP void DynOS_Init() {
#ifdef OMM_DEFINES_H
omm_opt_init();
#endif
DynOS_Opt_Init();
}
//

View file

@ -14,6 +14,7 @@
#include "saturn/filesystem/saturn_projectfile.h"
#include "saturn/imgui/saturn_imgui_dynos.h"
#include "saturn/filesystem/saturn_locationfile.h"
#include "data/dynos.cpp.h"
bool mario_exists;
@ -571,6 +572,7 @@ const char* saturn_get_stage_name(int courseNum) {
}
void saturn_do_load() {
DynOS_Opt_Init();
saturn_imgui_init();
saturn_load_locations();
}