aboutsummaryrefslogtreecommitdiff
path: root/base
diff options
context:
space:
mode:
authorMax Horn2006-06-24 08:07:48 +0000
committerMax Horn2006-06-24 08:07:48 +0000
commitd210b19aec69d34711e5d473e6e4e5081955b02e (patch)
tree3346e4ab55138bffc74c614faf862bcff10b896c /base
parent72a4747dd64461e4bca819f5a246c84518b7ff8d (diff)
downloadscummvm-rg350-d210b19aec69d34711e5d473e6e4e5081955b02e.tar.gz
scummvm-rg350-d210b19aec69d34711e5d473e6e4e5081955b02e.tar.bz2
scummvm-rg350-d210b19aec69d34711e5d473e6e4e5081955b02e.zip
Move backends/fs/fs.h and .cpp to common/fs/fs.h and .cpp
Rationale: backend implementations belong to backends/, but portable APIs meant to be used by high level code is for common / sound / graphics / ... (compare also with backends/midi vs. sound/mididrv.h) svn-id: r23274
Diffstat (limited to 'base')
-rw-r--r--base/commandLine.cpp2
-rw-r--r--base/main.cpp2
-rw-r--r--base/plugins.cpp2
3 files changed, 3 insertions, 3 deletions
diff --git a/base/commandLine.cpp b/base/commandLine.cpp
index 64cb22ebd8..70f06031a7 100644
--- a/base/commandLine.cpp
+++ b/base/commandLine.cpp
@@ -51,7 +51,7 @@
#define DETECTOR_TESTING_HACK
#ifdef DETECTOR_TESTING_HACK
-#include "backends/fs/fs.h"
+#include "common/fs.h"
#endif
namespace Base {
diff --git a/base/main.cpp b/base/main.cpp
index 94f5617f16..7c5042eb15 100644
--- a/base/main.cpp
+++ b/base/main.cpp
@@ -30,13 +30,13 @@
*/
#include "common/stdafx.h"
-#include "backends/fs/fs.h"
#include "base/engine.h"
#include "base/commandLine.h"
#include "base/plugins.h"
#include "base/version.h"
#include "common/config-manager.h"
#include "common/file.h"
+#include "common/fs.h"
#include "common/system.h"
#include "common/timer.h"
#include "gui/newgui.h"
diff --git a/base/plugins.cpp b/base/plugins.cpp
index a72cbf1384..d16ad791c8 100644
--- a/base/plugins.cpp
+++ b/base/plugins.cpp
@@ -22,10 +22,10 @@
*/
#include "common/stdafx.h"
-#include "backends/fs/fs.h"
#include "base/plugins.h"
#include "base/engine.h"
#include "common/util.h"
+#include "common/fs.h"
/** Type of factory functions which make new Engine objects. */
typedef PluginError (*EngineFactory)(OSystem *syst, Engine **engine);