From b1c32d71d48d9fe9eda92541f5f928f908e4b974 Mon Sep 17 00:00:00 2001 From: MegaMech Date: Fri, 3 May 2024 15:03:01 -0600 Subject: [PATCH] Update Game.cpp --- src/port/Game.cpp | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/src/port/Game.cpp b/src/port/Game.cpp index 9dbb0eb54..42f84a103 100644 --- a/src/port/Game.cpp +++ b/src/port/Game.cpp @@ -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; -} \ No newline at end of file +}