added keybind

This commit is contained in:
2026-03-06 16:42:16 +02:00
parent 9b4cec7920
commit 1a2a353e03
30 changed files with 338 additions and 53 deletions

View File

@@ -17,10 +17,10 @@ DECLARE_BUILD_STAGE(launcher)
{
CProject_t compileProject = {};
LinkProject_t ldProject = {};
compileProject.m_szName = "launcher";
compileProject.files = {"launcher.cpp"};
compileProject.includeDirectories = {"../external/SDL/include"};
compileProject.m_target = Target_t::DefaultTarget();
ldProject = ccompiler->Compile(&compileProject);
ldProject.linkType = ELINK_EXECUTABLE;
if (compileProject.m_target.kernel == TARGET_KERNEL_IOS)

View File

@@ -95,6 +95,8 @@ int main( int argc, char **argv ) {
printf("Symbol not found: FunnyMain\n");
}
dirname(szLauncherPath);
SetCurrentDirectoryA(szLauncherPath);
pEngineMain(argc, argv);
#endif