🎨 Misc. cleanup

This commit is contained in:
Scott Lahteine
2021-12-21 22:15:48 -06:00
committed by Scott Lahteine
parent 8abe314b18
commit ccc66a8528
13 changed files with 75 additions and 78 deletions

View File

@ -366,7 +366,7 @@ int8_t ChironTFT::FindToken(char c) {
#endif
return pos;
}
} while(++pos < command_len);
} while (++pos < command_len);
#if ACDEBUG(AC_INFO)
SERIAL_ECHOLNPGM("Not found: ", c);
#endif

View File

@ -77,7 +77,7 @@ const char *FilesScreen::getSelectedFilename(bool shortName) {
}
void FilesScreen::drawSelectedFile() {
if(mydata.selected_tag == 0xFF) return;
if (mydata.selected_tag == 0xFF) return;
FileList files;
files.seek(getSelectedFileIndex(), true);
mydata.flags.is_dir = files.isDir();