diff options
author | Max Horn | 2005-01-10 22:06:49 +0000 |
---|---|---|
committer | Max Horn | 2005-01-10 22:06:49 +0000 |
commit | cffd917165a14e981d61342458a9d054d3c14705 (patch) | |
tree | 3aa6658993fa842477a7ab10b2a21dbf7625a531 /graphics | |
parent | e79458130835528ddf693fba868243cbbfb4ee9a (diff) | |
download | scummvm-rg350-cffd917165a14e981d61342458a9d054d3c14705.tar.gz scummvm-rg350-cffd917165a14e981d61342458a9d054d3c14705.tar.bz2 scummvm-rg350-cffd917165a14e981d61342458a9d054d3c14705.zip |
system.h was being included in tons of places, without any good reason; reduced this (total dependencies on system.h went down from 193 to 85 files)
svn-id: r16527
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/animation.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/graphics/animation.cpp b/graphics/animation.cpp index 48a85fa03c..f54779ea2d 100644 --- a/graphics/animation.cpp +++ b/graphics/animation.cpp @@ -21,9 +21,10 @@ #include "common/stdafx.h" #include "graphics/animation.h" -#include "common/file.h" #include "sound/audiostream.h" #include "common/config-manager.h" +#include "common/file.h" +#include "common/system.h" namespace Graphics { |