1
0
Fork 0
mirror of https://github.com/AquariaOSE/Aquaria.git synced 2025-02-11 14:44:07 +00:00

Fix oversight because of copying files around + make sure this won't happen again.

This commit is contained in:
fgenesis 2014-04-15 19:58:10 +02:00
parent f69d88b656
commit 4df08dc19f
2 changed files with 6 additions and 3 deletions

View file

@ -44,8 +44,11 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#include <assert.h> #include <assert.h>
#ifdef BBGE_BUILD_VFS #ifdef BBGE_BUILD_VFS
#include "ttvfs.h" # include "ttvfs.h"
ttvfs::Root vfs; // extern # ifndef VFS_IGNORE_CASE
# error Must define VFS_IGNORE_CASE, see VFSDefines.h
# endif
ttvfs::Root vfs; // extern
#endif #endif
Vector getDirVector(Direction dir) Vector getDirVector(Direction dir)

View file

@ -18,7 +18,7 @@
// (no sane programmer should do this, anyway). // (no sane programmer should do this, anyway).
// However, on non-windows systems this will decrease performance when checking for files // However, on non-windows systems this will decrease performance when checking for files
// on disk (see VFSLoader.cpp). // on disk (see VFSLoader.cpp).
//#define VFS_IGNORE_CASE #define VFS_IGNORE_CASE
/* --- End of config section --- */ /* --- End of config section --- */