diff options
author | Max Horn | 2006-08-04 17:47:57 +0000 |
---|---|---|
committer | Max Horn | 2006-08-04 17:47:57 +0000 |
commit | 4ee581adb5f732c9d1af3d362210b9bd00ecc034 (patch) | |
tree | 5449251626cb56487396c02a66d2973f36a7c70b /common | |
parent | d74bc3fe3ab58b3270bfb246c87bc309a33eb897 (diff) | |
download | scummvm-rg350-4ee581adb5f732c9d1af3d362210b9bd00ecc034.tar.gz scummvm-rg350-4ee581adb5f732c9d1af3d362210b9bd00ecc034.tar.bz2 scummvm-rg350-4ee581adb5f732c9d1af3d362210b9bd00ecc034.zip |
Fixed some broken #include's (the PS2 and Symbian may need more fixed, though)
svn-id: r23666
Diffstat (limited to 'common')
-rw-r--r-- | common/config-manager.cpp | 2 | ||||
-rw-r--r-- | common/scummsys.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/common/config-manager.cpp b/common/config-manager.cpp index 1f79c22c07..354a48e031 100644 --- a/common/config-manager.cpp +++ b/common/config-manager.cpp @@ -30,7 +30,7 @@ DECLARE_SINGLETON(Common::ConfigManager); #ifdef __PLAYSTATION2__ -#include "backends/ps2/systemps2.h" +#include "backends/platform/ps2/systemps2.h" #endif #if defined(UNIX) diff --git a/common/scummsys.h b/common/scummsys.h index c1bfc50528..898d902edb 100644 --- a/common/scummsys.h +++ b/common/scummsys.h @@ -441,7 +441,7 @@ // for those replaced fopen/fread/etc functions typedef unsigned long uint64; typedef signed long int64; - #include "backends/ps2/fileio.h" + #include "backends/platform/ps2/fileio.h" #endif |