diff options
author | Max Horn | 2010-11-28 23:39:02 +0000 |
---|---|---|
committer | Max Horn | 2010-11-28 23:39:02 +0000 |
commit | 2cae2fc4d08aa957fe9a68d223c8b2ff1859fd9c (patch) | |
tree | 0fa22c489b79416ed2de3796633240bfe4baf24b | |
parent | 179734a082fcbd2edff6a9499d6d88975b8e27f2 (diff) | |
download | scummvm-rg350-2cae2fc4d08aa957fe9a68d223c8b2ff1859fd9c.tar.gz scummvm-rg350-2cae2fc4d08aa957fe9a68d223c8b2ff1859fd9c.tar.bz2 scummvm-rg350-2cae2fc4d08aa957fe9a68d223c8b2ff1859fd9c.zip |
M4: Remove unnecessary reference to file.h
svn-id: r54563
-rw-r--r-- | engines/m4/globals.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/engines/m4/globals.h b/engines/m4/globals.h index 117769ee8e..2d90b7ba77 100644 --- a/engines/m4/globals.h +++ b/engines/m4/globals.h @@ -30,10 +30,13 @@ #include "common/array.h" #include "common/hashmap.h" #include "common/rect.h" -#include "common/file.h" #include "common/list.h" #include "common/ptr.h" +namespace Common { +class SeekableReadStream; +} + namespace M4 { class MadsM4Engine; |