diff options
author | Max Horn | 2006-06-24 08:07:48 +0000 |
---|---|---|
committer | Max Horn | 2006-06-24 08:07:48 +0000 |
commit | d210b19aec69d34711e5d473e6e4e5081955b02e (patch) | |
tree | 3346e4ab55138bffc74c614faf862bcff10b896c /engines/scumm | |
parent | 72a4747dd64461e4bca819f5a246c84518b7ff8d (diff) | |
download | scummvm-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 'engines/scumm')
-rw-r--r-- | engines/scumm/plugin.cpp | 3 | ||||
-rw-r--r-- | engines/scumm/scumm.cpp | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/engines/scumm/plugin.cpp b/engines/scumm/plugin.cpp index b980681220..0885fc77cf 100644 --- a/engines/scumm/plugin.cpp +++ b/engines/scumm/plugin.cpp @@ -23,11 +23,10 @@ #include "common/stdafx.h" -#include "backends/fs/fs.h" - #include "base/plugins.h" #include "common/config-manager.h" +#include "common/fs.h" #include "common/list.h" #include "common/md5.h" #include "common/system.h" // Only needed for g_system diff --git a/engines/scumm/scumm.cpp b/engines/scumm/scumm.cpp index 32dcb5c946..45cd1c804f 100644 --- a/engines/scumm/scumm.cpp +++ b/engines/scumm/scumm.cpp @@ -23,9 +23,8 @@ #include "common/stdafx.h" -#include "backends/fs/fs.h" - #include "common/config-manager.h" +#include "common/fs.h" #include "common/md5.h" #include "common/system.h" |