From 2bdad527def967ef812702c2b42f39ed082a5779 Mon Sep 17 00:00:00 2001 From: Leon Styhre Date: Sat, 2 Dec 2023 09:52:24 +0100 Subject: [PATCH] (Android) Set GuiOrphanedDataCleanup to be case-insensitive --- es-app/src/guis/GuiOrphanedDataCleanup.cpp | 4 ++-- es-app/src/guis/GuiOrphanedDataCleanup.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) 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.