diff --git a/ISLE/android/config.cpp b/ISLE/android/config.cpp index c731b601..a2d8e7bc 100644 --- a/ISLE/android/config.cpp +++ b/ISLE/android/config.cpp @@ -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)); } diff --git a/ISLE/isleapp.cpp b/ISLE/isleapp.cpp index 4b01148b..c0b5b4e1 100644 --- a/ISLE/isleapp.cpp +++ b/ISLE/isleapp.cpp @@ -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 diff --git a/android-project/app/build.gradle b/android-project/app/build.gradle index 9a9b1ec1..2e3e4a00 100644 --- a/android-project/app/build.gradle +++ b/android-project/app/build.gradle @@ -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"