aboutsummaryrefslogtreecommitdiffstats
path: root/src/gfile
diff options
context:
space:
mode:
authorinmarket <andrewh@inmarket.com.au>2014-09-17 09:32:09 +1000
committerinmarket <andrewh@inmarket.com.au>2014-09-17 09:32:09 +1000
commitc28c4645c0a1fb6f298e5ca2e8e843991b6adaef (patch)
tree851400e661a000240108c620b568974a294aedbe /src/gfile
parent036ad5d3dd368d2836ed0148143da786f48f15e0 (diff)
downloaduGFX-c28c4645c0a1fb6f298e5ca2e8e843991b6adaef.tar.gz
uGFX-c28c4645c0a1fb6f298e5ca2e8e843991b6adaef.tar.bz2
uGFX-c28c4645c0a1fb6f298e5ca2e8e843991b6adaef.zip
FATFS and PETITFS compile error fix (caused by prior file renaming).
Diffstat (limited to 'src/gfile')
-rw-r--r--src/gfile/gfile_fs_fatfs.c2
-rw-r--r--src/gfile/gfile_fs_petitfs.c2
-rw-r--r--src/gfile/sys_options.h2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/gfile/gfile_fs_fatfs.c b/src/gfile/gfile_fs_fatfs.c
index 2e4ef52b..c76b0659 100644
--- a/src/gfile/gfile_fs_fatfs.c
+++ b/src/gfile/gfile_fs_fatfs.c
@@ -14,7 +14,7 @@
#if GFX_USE_GFILE && GFILE_NEED_FATFS
#include "gfile_fs.h"
-#include "fatfs_wrapper.h"
+#include "gfile_fatfs_wrapper.h"
/********************************************************
* The FAT file-system VMT
diff --git a/src/gfile/gfile_fs_petitfs.c b/src/gfile/gfile_fs_petitfs.c
index 9b3b510b..443de42c 100644
--- a/src/gfile/gfile_fs_petitfs.c
+++ b/src/gfile/gfile_fs_petitfs.c
@@ -14,7 +14,7 @@
#if GFX_USE_GFILE && GFILE_NEED_PETITFS
#include "gfile_fs.h"
-#include "petitfs_wrapper.h"
+#include "gfile_petitfs_wrapper.h"
static bool_t petitfsExists(const char* fname);
static bool_t petitfsOpen(GFILE* f, const char* fname);
diff --git a/src/gfile/sys_options.h b/src/gfile/sys_options.h
index 354d4f2b..5581b13b 100644
--- a/src/gfile/sys_options.h
+++ b/src/gfile/sys_options.h
@@ -127,7 +127,7 @@
* @note PETITFS can only have one file open at a time.
*/
#ifndef GFILE_NEED_PETITFS
- #define GFILE_NEED_FATFS FALSE
+ #define GFILE_NEED_PETITFS FALSE
#endif
/**
* @brief Include the operating system's native file system