This commit is contained in:
Kylie C 2025-08-11 21:06:40 -04:00
parent bb3c4a2acf
commit 52fb0063c3
3 changed files with 2 additions and 3 deletions

View File

@ -24,7 +24,7 @@ void Android_SetupDefaultConfigOverrides(dictionary* p_dictionary)
iniparser_set(p_dictionary, "isle:savepath", savedata);
// Default to Virtal Mouse
// Default to Virtual Mouse
char buf[16];
iniparser_set(p_dictionary, "isle:Touch Scheme", SDL_itoa(0, buf, 10));
}

View File

@ -1037,7 +1037,6 @@ bool IsleApp::LoadConfig()
char* prefPath = new char[strlen(androidPath) + 2];
strcpy(prefPath, androidPath);
strcat(prefPath, "/");
SDL_Log("%s", prefPath);
#else
char* prefPath = SDL_GetPrefPath("isledecomp", "isle");
#endif

View File

@ -47,7 +47,7 @@ android {
}
}
tasks.register('downloadSDL3AndroidArchive', Exec) {
tasks.register('compileSDL3AndroidArchive', Exec) {
def rootDir = projectDir.parentFile.parentFile
def sdl3Dir = "build/_deps/sdl3-src"
def cmakeCommand = "cmake -B build -DANDROID_SDL=TRUE"