SD Menu patches

This commit is contained in:
Scott Lahteine
2017-11-26 01:14:18 -06:00
parent 9b64be0bc5
commit f90c075d1f
3 changed files with 8 additions and 6 deletions

View File

@ -631,13 +631,14 @@ void CardReader::chdir(const char * relpath) {
}
}
void CardReader::updir() {
if (workDirDepth > 0) { // At least 1 dir has been saved
workDir = --workDirDepth ? workDirParents[workDirDepth] : root; // Use parent, or root if none
int8_t CardReader::updir() {
if (workDirDepth > 0) { // At least 1 dir has been saved
workDir = --workDirDepth ? workDirParents[workDirDepth - 1] : root; // Use parent, or root if none
#if ENABLED(SDCARD_SORT_ALPHA)
presort();
#endif
}
return workDirDepth;
}
#if ENABLED(SDCARD_SORT_ALPHA)

View File

@ -63,7 +63,7 @@ public:
void ls();
void chdir(const char *relpath);
void updir();
int8_t updir();
void setroot();
uint16_t get_num_Files();