From 4ba2df8792a2b05666b9bd085e69bdfb97cbbfd5 Mon Sep 17 00:00:00 2001 From: Max Horn Date: Fri, 18 Jan 2008 17:24:34 +0000 Subject: [PATCH] Use explicit path in #include statement (DS port specific) svn-id: r30552 --- backends/fs/ds/ds-fs.cpp | 4 ++-- backends/fs/ds/ds-fs.h | 2 +- common/file.cpp | 2 +- common/util.cpp | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/backends/fs/ds/ds-fs.cpp b/backends/fs/ds/ds-fs.cpp index ea1e450262c..bd8cc59008b 100644 --- a/backends/fs/ds/ds-fs.cpp +++ b/backends/fs/ds/ds-fs.cpp @@ -20,10 +20,10 @@ * */ -#include "str.h" +#include "common/str.h" #include "common/util.h" //#include //basic print funcionality -#include "ds-fs.h" +#include "backends/fs/ds/ds-fs.h" #include "dsmain.h" #include "gba_nds_fat.h" diff --git a/backends/fs/ds/ds-fs.h b/backends/fs/ds/ds-fs.h index b3cd8f1dd42..0b5037d1a77 100644 --- a/backends/fs/ds/ds-fs.h +++ b/backends/fs/ds/ds-fs.h @@ -24,7 +24,7 @@ #define _DS_FS_H //#include -#include "fs.h" +#include "common/fs.h" #include "zipreader.h" #include "ramsave.h" #include "scummconsole.h" diff --git a/common/file.cpp b/common/file.cpp index 3c2dfd4f599..3f0c13ba393 100644 --- a/common/file.cpp +++ b/common/file.cpp @@ -74,7 +74,7 @@ //#undef getc //#undef ferror - #include "ds-fs.h" + #include "backends/fs/ds/ds-fs.h" //void std_fprintf(FILE* handle, const char* fmt, ...); // used in common/util.cpp diff --git a/common/util.cpp b/common/util.cpp index 46b5acf502c..5ee3f38c2fe 100644 --- a/common/util.cpp +++ b/common/util.cpp @@ -43,7 +43,7 @@ extern bool isSmartphone(void); #endif #ifdef __DS__ - #include "ds-fs.h" + #include "backends/fs/ds/ds-fs.h" #undef stderr #undef stdout