diff --git a/es-app/src/guis/GuiOrphanedDataCleanup.cpp b/es-app/src/guis/GuiOrphanedDataCleanup.cpp index 7279826f9..5281e2ad3 100644 --- a/es-app/src/guis/GuiOrphanedDataCleanup.cpp +++ b/es-app/src/guis/GuiOrphanedDataCleanup.cpp @@ -1,6 +1,6 @@ // SPDX-License-Identifier: MIT // -// EmulationStation Desktop Edition +// ES-DE Frontend // GuiOrphanedDataCleanup.cpp // // Removes orphaned game media, gamelist.xml entries and custom collections entries. @@ -39,7 +39,7 @@ GuiOrphanedDataCleanup::GuiOrphanedDataCleanup(std::function reloadCallb addChild(&mBackground); addChild(&mGrid); -#if defined(_WIN64) || defined(__APPLE__) +#if defined(_WIN64) || defined(__APPLE__) || defined(__ANDROID__) // Although macOS may have filesystem case-sensitivity enabled it's rare and in worst case // this will just leave some extra media files on the filesystem. mCaseSensitiveFilesystem = false; diff --git a/es-app/src/guis/GuiOrphanedDataCleanup.h b/es-app/src/guis/GuiOrphanedDataCleanup.h index 6523da643..0170868b5 100644 --- a/es-app/src/guis/GuiOrphanedDataCleanup.h +++ b/es-app/src/guis/GuiOrphanedDataCleanup.h @@ -1,6 +1,6 @@ // SPDX-License-Identifier: MIT // -// EmulationStation Desktop Edition +// ES-DE Frontend // GuiOrphanedDataCleanup.h // // Removes orphaned game media, gamelist.xml entries and custom collections entries.