diff options
author | Max Horn | 2010-11-28 23:09:47 +0000 |
---|---|---|
committer | Max Horn | 2010-11-28 23:09:47 +0000 |
commit | 945602fdbe308c773a782a3cfe6b78503661b439 (patch) | |
tree | f2831d2fd488480e084e0146a69e62bf79b03a2d /common | |
parent | ff3558037a9fbbbd2adbd6a2726b9d97293e5076 (diff) | |
download | scummvm-rg350-945602fdbe308c773a782a3cfe6b78503661b439.tar.gz scummvm-rg350-945602fdbe308c773a782a3cfe6b78503661b439.tar.bz2 scummvm-rg350-945602fdbe308c773a782a3cfe6b78503661b439.zip |
COMMON: Remove unnecessary reference to file.h
svn-id: r54561
Diffstat (limited to 'common')
-rw-r--r-- | common/ne_exe.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/common/ne_exe.h b/common/ne_exe.h index 7ab51325c4..c6fb804cf7 100644 --- a/common/ne_exe.h +++ b/common/ne_exe.h @@ -27,7 +27,6 @@ #define COMMON_NE_EXE_H #include "common/array.h" -#include "common/file.h" #include "common/list.h" namespace Common { @@ -107,7 +106,7 @@ private: /** A New Executable cursor group. */ struct NECursorGroup { NEResourceID id; - Array<NECursor*> cursors; ///< The cursors. + Array<NECursor *> cursors; ///< The cursors. }; /** The default Windows resources. */ |