SDCARD_RATHERRECENTFIRST with SDCARD_SORT_ALPHA

This commit is contained in:
Scott Lahteine 2019-04-02 22:24:23 -05:00
parent 46445a5a16
commit 20a41e2f7b

View File

@ -813,7 +813,11 @@ void CardReader::setroot() {
// Init sort order.
for (uint16_t i = 0; i < fileCnt; i++) {
sort_order[i] = i;
sort_order[i] = (
#if ENABLED(SDCARD_RATHERRECENTFIRST)
fileCnt - 1 -
#endif
i);
// If using RAM then read all filenames now.
#if ENABLED(SDSORT_USES_RAM)
getfilename(i);