Update Game.cpp

This commit is contained in:
MegaMech
2024-05-03 15:03:01 -06:00
committed by Lywx
parent 8e5168396d
commit b1c32d71d4
+7 -6
View File
@@ -4,7 +4,9 @@
#include "Engine.h"
extern "C" {
#include "main.h"
#include "audio/load.h"
#include "audio/external.h"
}
extern "C"
@@ -32,11 +34,10 @@ extern "C"
int main(int argc, char *argv[]) {
#endif
GameEngine::Create();
// Main_SetVIMode();
// Lib_FillScreen(1);
// Main_Initialize();
// Main_ThreadEntry(NULL);
audio_init();
sound_init();
thread5_game_loop();
GameEngine::Instance->ProcessFrame(push_frame);
GameEngine::Instance->Destroy();
return 0;
}
}