diff options
author | Max Horn | 2009-05-12 23:28:49 +0000 |
---|---|---|
committer | Max Horn | 2009-05-12 23:28:49 +0000 |
commit | 8d8e9d3aaa717616c001083913d0c1e6fff2c580 (patch) | |
tree | 4225fe9070b1f6f7e3f77016b9f864726f4ed911 /graphics/pixelformat.h | |
parent | ca7cf951a712335846c70444f40d4cfb3d88b30e (diff) | |
download | scummvm-rg350-8d8e9d3aaa717616c001083913d0c1e6fff2c580.tar.gz scummvm-rg350-8d8e9d3aaa717616c001083913d0c1e6fff2c580.tar.bz2 scummvm-rg350-8d8e9d3aaa717616c001083913d0c1e6fff2c580.zip |
Must include common/scummsys.h in graphics/pixelformat.h because it uses type 'byte'
svn-id: r40513
Diffstat (limited to 'graphics/pixelformat.h')
-rw-r--r-- | graphics/pixelformat.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/graphics/pixelformat.h b/graphics/pixelformat.h index 7015f4d66f..f59650e5cc 100644 --- a/graphics/pixelformat.h +++ b/graphics/pixelformat.h @@ -26,8 +26,9 @@ #ifndef GRAPHICS_PIXELFORMAT_H #define GRAPHICS_PIXELFORMAT_H -namespace Graphics { +#include "common/scummsys.h" +namespace Graphics { /** * A pixel format description. |