diff --git a/console/fileio/file_browser.h b/console/fileio/file_browser.h index 4a59986bbc..eb68a6b5bd 100644 --- a/console/fileio/file_browser.h +++ b/console/fileio/file_browser.h @@ -44,12 +44,12 @@ typedef struct { typedef struct { - uint32_t file_count; /* amount of files in current dir*/ - uint32_t currently_selected; /* currently select browser entry*/ + uint32_t file_count; /* amount of files in current dir*/ + uint32_t currently_selected; /* currently select browser entry*/ uint32_t directory_stack_size; - char dir[128][FS_MAX_FS_PATH_LENGTH]; /* info of the current directory*/ - DirectoryEntry cur[MAX_FILE_LIMIT]; /* current file listing*/ - char extensions[512]; /* allowed extensions*/ + char dir[128][FS_MAX_FS_PATH_LENGTH]; /* info of the current directory*/ + DirectoryEntry cur[MAX_FILE_LIMIT]; /* current file listing*/ + char extensions[512]; /* allowed extensions*/ } filebrowser_t; void filebrowser_new(filebrowser_t * filebrowser, const char * start_dir, const char * extensions);