diff --git a/Tactility/Source/hal/sdcard/SdCardMounting.cpp b/Tactility/Source/hal/sdcard/SdCardMounting.cpp index e66b4a1e..00bea3cb 100644 --- a/Tactility/Source/hal/sdcard/SdCardMounting.cpp +++ b/Tactility/Source/hal/sdcard/SdCardMounting.cpp @@ -1,6 +1,8 @@ #include #include +#include + namespace tt::hal::sdcard { constexpr auto* TAG = "SdCardMounting"; @@ -20,7 +22,7 @@ static std::string getMountPath(int index, int count) { } void mountAll() { - auto sdcards = hal::findDevices(Device::Type::SdCard); + const auto sdcards = hal::findDevices(Device::Type::SdCard); // Numbered mount path name for (int i = 0; i < sdcards.size(); i++) { auto sdcard = sdcards[i];