From c28c4645c0a1fb6f298e5ca2e8e843991b6adaef Mon Sep 17 00:00:00 2001 From: inmarket Date: Wed, 17 Sep 2014 09:32:09 +1000 Subject: [PATCH] FATFS and PETITFS compile error fix (caused by prior file renaming). --- src/gfile/gfile_fs_fatfs.c | 2 +- src/gfile/gfile_fs_petitfs.c | 2 +- src/gfile/sys_options.h | 2 +- 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