禁用b键的逻辑反了。。。

This commit is contained in:
anod 2022-10-15 17:55:01 +08:00
parent a4c2660f56
commit 1e6789a43c

View File

@ -197,7 +197,7 @@ Result browseFiles(const char *const basePath, char selected[512])
u32 pathLen = strlen(curDir);
if( count > 0 )
error = atp_select( curDir, count, display_folder, NULL, (atp_callerdata_t)dList, selecting, strcmp(curDir, FS_DRIVE_NAMES), &value );
error = atp_select( curDir, count, display_folder, NULL, (atp_callerdata_t)dList, selecting, strcmp(curDir, FS_DRIVE_NAMES)!=0, &value );
else error = atp_show( 1, display_empty, NULL );