summaryrefslogtreecommitdiff
path: root/firmware/include
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/include')
-rw-r--r--firmware/include/dircache.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/firmware/include/dircache.h b/firmware/include/dircache.h
index 4141254de6..bd7308da68 100644
--- a/firmware/include/dircache.h
+++ b/firmware/include/dircache.h
@@ -32,9 +32,14 @@ struct travel_data {
32 struct dircache_entry *first; 32 struct dircache_entry *first;
33 struct dircache_entry *ce; 33 struct dircache_entry *ce;
34 struct dircache_entry *down_entry; 34 struct dircache_entry *down_entry;
35#ifdef SIMULATOR
36 DIR *dir, *newdir;
37 struct dirent *entry;
38#else
35 struct fat_dir *dir; 39 struct fat_dir *dir;
36 struct fat_dir newdir; 40 struct fat_dir newdir;
37 struct fat_direntry entry; 41 struct fat_direntry entry;
42#endif
38 int pathpos; 43 int pathpos;
39}; 44};
40 45