Browse Source

Fixed link names for BeefBoot

Brian Fiete 5 years ago
parent
commit
079574a4e7
1 changed files with 5 additions and 2 deletions
  1. 5 2
      BeefBoot/BeefBoot.cpp

+ 5 - 2
BeefBoot/BeefBoot.cpp

@@ -29,7 +29,8 @@ using namespace Beefy;
 
 
 #include "BootApp.h"
 #include "BootApp.h"
 
 
-BF_IMPORT void BF_CALLTYPE Debugger_ProgramDone();
+BF_IMPORT void BF_CALLTYPE IDEHelper_ProgramStart();
+BF_IMPORT void BF_CALLTYPE IDEHelper_ProgramDone();
 
 
 int main(int argc, char* argv[])
 int main(int argc, char* argv[])
 {		
 {		
@@ -44,6 +45,8 @@ int main(int argc, char* argv[])
 	BfpThread_SetName(NULL, "MainThread", NULL);
 	BfpThread_SetName(NULL, "MainThread", NULL);
 
 
     BfpSystem_Init(BFP_VERSION, BfpSystemInitFlag_InstallCrashCatcher);
     BfpSystem_Init(BFP_VERSION, BfpSystemInitFlag_InstallCrashCatcher);
+
+	IDEHelper_ProgramStart();
 	
 	
 	gApp = new BootApp();
 	gApp = new BootApp();
 
 
@@ -116,7 +119,7 @@ int main(int argc, char* argv[])
 
 
 	delete gApp;		
 	delete gApp;		
 
 
-	Debugger_ProgramDone();
+	IDEHelper_ProgramDone();
 
 
     BfpSystem_Shutdown();
     BfpSystem_Shutdown();