diff options
author | Max Horn | 2008-06-03 21:04:41 +0000 |
---|---|---|
committer | Max Horn | 2008-06-03 21:04:41 +0000 |
commit | 5288daa863b6eeb9696e9dd48640f237b0b644ba (patch) | |
tree | cc92f8b555ebea8e5c1d8d430133311375fb5d3d | |
parent | e3a8074a6d93b8ef590c9761f2a8d7aba8b06e0b (diff) | |
download | scummvm-rg350-5288daa863b6eeb9696e9dd48640f237b0b644ba.tar.gz scummvm-rg350-5288daa863b6eeb9696e9dd48640f237b0b644ba.tar.bz2 scummvm-rg350-5288daa863b6eeb9696e9dd48640f237b0b644ba.zip |
DS: Forgot to commit #include changes in the ds-fs.* files; this allows to get rid of -Isource/fat
svn-id: r32520
-rw-r--r-- | backends/fs/ds/ds-fs.cpp | 2 | ||||
-rw-r--r-- | backends/fs/ds/ds-fs.h | 2 | ||||
-rw-r--r-- | backends/platform/ds/arm9/makefile | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/backends/fs/ds/ds-fs.cpp b/backends/fs/ds/ds-fs.cpp index 79b957f2e2..cffe4c118d 100644 --- a/backends/fs/ds/ds-fs.cpp +++ b/backends/fs/ds/ds-fs.cpp @@ -25,7 +25,7 @@ //#include <NDS/ARM9/console.h> //basic print funcionality #include "backends/fs/ds/ds-fs.h" #include "dsmain.h" -#include "gba_nds_fat.h" +#include "fat/gba_nds_fat.h" diff --git a/backends/fs/ds/ds-fs.h b/backends/fs/ds/ds-fs.h index 21dfa00667..9ac453aca9 100644 --- a/backends/fs/ds/ds-fs.h +++ b/backends/fs/ds/ds-fs.h @@ -28,7 +28,7 @@ #include "zipreader.h" #include "ramsave.h" #include "scummconsole.h" -#include "gba_nds_fat.h" +#include "fat/gba_nds_fat.h" #include "backends/fs/abstract-fs.h" namespace DS { diff --git a/backends/platform/ds/arm9/makefile b/backends/platform/ds/arm9/makefile index 1a4d61113e..7472a32218 100644 --- a/backends/platform/ds/arm9/makefile +++ b/backends/platform/ds/arm9/makefile @@ -182,7 +182,7 @@ endif LDFLAGS = -specs=ds_arm9.specs -mthumb-interwork -Wl,--wrap,time -mno-fpu -Wl,-Map,map.txt -INCLUDES= -I./ -I$(portdir)/$(BUILD) -I$(srcdir) -I$(srcdir)/common -I$(portdir)/source -I$(portdir)/source/fat \ +INCLUDES= -I./ -I$(portdir)/$(BUILD) -I$(srcdir) -I$(srcdir)/common -I$(portdir)/source \ -I$(portdir)/data -I$(libndsdir)/include -I$(portdir)/../commoninclude\ -I$(libndsdir)/include -I$(libndsdir)/include/nds -I$(srcdir)/engines -I$(portdir)/source/mad\ -I$(portdir)/source/libcartreset -include $(srcdir)/common/scummsys.h |