diff options
author | Max Horn | 2005-06-24 15:23:51 +0000 |
---|---|---|
committer | Max Horn | 2005-06-24 15:23:51 +0000 |
commit | 8b1d7b916673078d20f15540f9cc2f531340ba97 (patch) | |
tree | 8473b085eb77b7ff7ec7ce5f9457307a27832042 /backends/ps2 | |
parent | 68907449b75479481348af5d3d4842a96b7651f6 (diff) | |
download | scummvm-rg350-8b1d7b916673078d20f15540f9cc2f531340ba97.tar.gz scummvm-rg350-8b1d7b916673078d20f15540f9cc2f531340ba97.tar.bz2 scummvm-rg350-8b1d7b916673078d20f15540f9cc2f531340ba97.zip |
When including files from common/, explicitly use the common/ prefix
svn-id: r18444
Diffstat (limited to 'backends/ps2')
-rw-r--r-- | backends/ps2/fileio.h | 2 | ||||
-rw-r--r-- | backends/ps2/savefile.cpp | 2 | ||||
-rw-r--r-- | backends/ps2/systemps2.cpp | 4 | ||||
-rw-r--r-- | backends/ps2/systemps2.h | 4 |
4 files changed, 6 insertions, 6 deletions
diff --git a/backends/ps2/fileio.h b/backends/ps2/fileio.h index fc10ad8bd8..48c9c7df5d 100644 --- a/backends/ps2/fileio.h +++ b/backends/ps2/fileio.h @@ -22,7 +22,7 @@ #ifndef __PS2FILE_IO__ #define __PS2FILE_IO__ -#include "scummsys.h" +#include "common/scummsys.h" class Ps2File { public: diff --git a/backends/ps2/savefile.cpp b/backends/ps2/savefile.cpp index 05539c5ab1..2e8276afb8 100644 --- a/backends/ps2/savefile.cpp +++ b/backends/ps2/savefile.cpp @@ -30,7 +30,7 @@ #include "backends/ps2/Gs2dScreen.h" #include "backends/ps2/asyncfio.h" #include "backends/ps2/systemps2.h" -#include "scummsys.h" +#include "common/scummsys.h" extern AsyncFio fio; diff --git a/backends/ps2/systemps2.cpp b/backends/ps2/systemps2.cpp index 33c93fb753..7bb95ec4c9 100644 --- a/backends/ps2/systemps2.cpp +++ b/backends/ps2/systemps2.cpp @@ -19,7 +19,7 @@ * */ -#include "stdafx.h" +#include "common/stdafx.h" #include <kernel.h> #include <stdio.h> #include <stdlib.h> @@ -31,7 +31,7 @@ #include <iopcontrol.h> #include <iopheap.h> #include <osd_config.h> -#include "scummsys.h" +#include "common/scummsys.h" #include "../intern.h" #include "base/engine.h" #include "backends/ps2/systemps2.h" diff --git a/backends/ps2/systemps2.h b/backends/ps2/systemps2.h index 01eb5c6f40..3c0a0efb9f 100644 --- a/backends/ps2/systemps2.h +++ b/backends/ps2/systemps2.h @@ -22,8 +22,8 @@ #ifndef SYSTEMPS2_H #define SYSTEMPS2_H -#include "stdafx.h" -#include "system.h" +#include "common/stdafx.h" +#include "common/system.h" class Gs2dScreen; class Ps2Input; |