From 7273b9901ddd8a67cc10194204de7b940a7d1872 Mon Sep 17 00:00:00 2001 From: Twinaphex Date: Sat, 14 Apr 2012 05:06:59 +0200 Subject: [PATCH] Nits in file_browser.h --- console/fileio/file_browser.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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);