aboutsummaryrefslogtreecommitdiff
path: root/common/system.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'common/system.cpp')
-rw-r--r--common/system.cpp22
1 files changed, 11 insertions, 11 deletions
diff --git a/common/system.cpp b/common/system.cpp
index 6320bdf4e5..a4bfe1968e 100644
--- a/common/system.cpp
+++ b/common/system.cpp
@@ -137,27 +137,27 @@ void OSystem::getTimeAndDate(struct tm &t) const {
* to the respective backends.
*/
#if defined(__amigaos4__)
- #include "backends/fs/amigaos4/amigaos4-fs-factory.cpp"
+ #include "backends/fs/amigaos4/amigaos4-fs-factory.h"
#elif defined(__DC__)
- #include "backends/fs/dc/ronincd-fs-factory.cpp"
+ #include "backends/fs/dc/ronincd-fs-factory.h"
#elif defined(__DS__)
- #include "backends/fs/ds/ds-fs-factory.cpp"
+ #include "backends/fs/ds/ds-fs-factory.h"
#elif defined(__GP32__)
- #include "backends/fs/gp32/gp32-fs-factory.cpp"
+ #include "backends/fs/gp32/gp32-fs-factory.h"
#elif defined(__MORPHOS__)
- #include "backends/fs/morphos/abox-fs-factory.cpp"
+ #include "backends/fs/morphos/abox-fs-factory.h"
#elif defined(PALMOS_MODE)
- #include "backends/fs/palmos/palmos-fs-factory.cpp"
+ #include "backends/fs/palmos/palmos-fs-factory.h"
#elif defined(__PLAYSTATION2__)
- #include "backends/fs/ps2/ps2-fs-factory.cpp"
+ #include "backends/fs/ps2/ps2-fs-factory.h"
#elif defined(__PSP__)
- #include "backends/fs/psp/psp-fs-factory.cpp"
+ #include "backends/fs/psp/psp-fs-factory.h"
#elif defined(__SYMBIAN32__)
- #include "backends/fs/symbian/symbian-fs-factory.cpp"
+ #include "backends/fs/symbian/symbian-fs-factory.h"
#elif defined(UNIX)
- #include "backends/fs/posix/posix-fs-factory.cpp"
+ #include "backends/fs/posix/posix-fs-factory.h"
#elif defined(WIN32)
- #include "backends/fs/windows/windows-fs-factory.cpp"
+ #include "backends/fs/windows/windows-fs-factory.h"
#endif
FilesystemFactory *OSystem::getFilesystemFactory() {