Merge pull request #3013 from leptun/MK3_DIR_DEPTH

DIR depth adjustments
This commit is contained in:
DRracer 2021-02-02 20:20:25 +01:00 committed by GitHub
commit 0bda4504c1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View file

@ -352,7 +352,7 @@ extern bool mesh_bed_run_from_menu;
extern bool sortAlpha;
extern char dir_names[3][9];
extern char dir_names[][9];
extern int8_t lcd_change_fil_state;
// save/restore printing

View file

@ -228,7 +228,7 @@ bool fan_state[2];
int fan_edge_counter[2];
int fan_speed[2];
char dir_names[3][9];
char dir_names[MAX_DIR_DEPTH][9];
bool sortAlpha = false;

View file

@ -3,7 +3,7 @@
#ifdef SDSUPPORT
#define MAX_DIR_DEPTH 10
#define MAX_DIR_DEPTH 6
#include "SdFile.h"
enum LsAction {LS_SerialPrint,LS_SerialPrint_LFN,LS_Count,LS_GetFilename};