diff options
Diffstat (limited to 'backends/fs')
-rw-r--r-- | backends/fs/morphos/abox-fs.cpp | 2 | ||||
-rw-r--r-- | backends/fs/palmos/palmos-fs.cpp | 2 | ||||
-rw-r--r-- | backends/fs/posix/posix-fs.cpp | 2 | ||||
-rw-r--r-- | backends/fs/ps2/ps2-fs.cpp | 2 | ||||
-rw-r--r-- | backends/fs/symbian/symbian-fs.cpp | 2 | ||||
-rw-r--r-- | backends/fs/windows/windows-fs.cpp | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/backends/fs/morphos/abox-fs.cpp b/backends/fs/morphos/abox-fs.cpp index 8900314fe6..d3954cebe6 100644 --- a/backends/fs/morphos/abox-fs.cpp +++ b/backends/fs/morphos/abox-fs.cpp @@ -26,7 +26,7 @@ #include <stdio.h> #include "base/engine.h" -#include "../fs.h" +#include "backends/fs/fs.h" /* * Implementation of the ScummVM file system API based on the MorphOS A-Box API. diff --git a/backends/fs/palmos/palmos-fs.cpp b/backends/fs/palmos/palmos-fs.cpp index 02e33e0fa9..a54f72d6c6 100644 --- a/backends/fs/palmos/palmos-fs.cpp +++ b/backends/fs/palmos/palmos-fs.cpp @@ -22,7 +22,7 @@ #if defined(PALMOS_MODE) #include "common/stdafx.h" -#include "fs/fs.h" +#include "backends/fs/fs.h" #include <stdio.h> #include <stdlib.h> diff --git a/backends/fs/posix/posix-fs.cpp b/backends/fs/posix/posix-fs.cpp index 687a958e4a..13ba7f3f8b 100644 --- a/backends/fs/posix/posix-fs.cpp +++ b/backends/fs/posix/posix-fs.cpp @@ -23,7 +23,7 @@ #include "common/stdafx.h" -#include "../fs.h" +#include "backends/fs/fs.h" #ifdef MACOSX #include <sys/types.h> diff --git a/backends/fs/ps2/ps2-fs.cpp b/backends/fs/ps2/ps2-fs.cpp index d409878dc0..a12fd99664 100644 --- a/backends/fs/ps2/ps2-fs.cpp +++ b/backends/fs/ps2/ps2-fs.cpp @@ -19,7 +19,7 @@ * $Id$ */ -#include "../fs.h" +#include "backends/fs/fs.h" #include <kernel.h> #include <stdio.h> #include <stdlib.h> diff --git a/backends/fs/symbian/symbian-fs.cpp b/backends/fs/symbian/symbian-fs.cpp index 99297b6a49..a5bf1f722f 100644 --- a/backends/fs/symbian/symbian-fs.cpp +++ b/backends/fs/symbian/symbian-fs.cpp @@ -24,7 +24,7 @@ #if defined (__SYMBIAN32__) #include "common/stdafx.h" -#include "../fs.h" +#include "backends/fs/fs.h" #include <dirent.h> #include <eikenv.h> diff --git a/backends/fs/windows/windows-fs.cpp b/backends/fs/windows/windows-fs.cpp index a238481cd6..06dbb57c05 100644 --- a/backends/fs/windows/windows-fs.cpp +++ b/backends/fs/windows/windows-fs.cpp @@ -22,7 +22,7 @@ #ifdef WIN32 #include "common/stdafx.h" -#include "../fs.h" +#include "backends/fs/fs.h" #include <stdio.h> #include <stdlib.h> #include <windows.h> |