diff options
author | Ori Avtalion | 2011-04-28 19:58:45 +0300 |
---|---|---|
committer | Ori Avtalion | 2011-04-28 19:58:45 +0300 |
commit | a88e355b2d53a0561ba42169e06f9a786fa7c040 (patch) | |
tree | 8dfb447e9ea6a65db41654e6d1dbdac7b8ad4b92 | |
parent | ae1047257515aed03332bb3b2570120e7ded6627 (diff) | |
download | scummvm-rg350-a88e355b2d53a0561ba42169e06f9a786fa7c040.tar.gz scummvm-rg350-a88e355b2d53a0561ba42169e06f9a786fa7c040.tar.bz2 scummvm-rg350-a88e355b2d53a0561ba42169e06f9a786fa7c040.zip |
COMMON: Fix compilation on backends that USE_RGB_COLOR
-rw-r--r-- | common/system.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/system.h b/common/system.h index 0f01fcd0c3..5d873b00e7 100644 --- a/common/system.h +++ b/common/system.h @@ -29,13 +29,13 @@ #include "common/scummsys.h" #include "common/noncopyable.h" #include "common/list.h" // For OSystem::getSupportedFormats() +#include "graphics/pixelformat.h" namespace Audio { class Mixer; } namespace Graphics { -struct PixelFormat; struct Surface; } |