diff options
author | Jody Northup | 2009-07-08 16:07:58 +0000 |
---|---|---|
committer | Jody Northup | 2009-07-08 16:07:58 +0000 |
commit | 828ed66555b99363fed62b4cbb83c36de68c3024 (patch) | |
tree | 954ef2912744813160ed95984808ac21c2b68a17 /common | |
parent | 3e47aaa151ff751af867c57344b063c30f5f75f3 (diff) | |
download | scummvm-rg350-828ed66555b99363fed62b4cbb83c36de68c3024.tar.gz scummvm-rg350-828ed66555b99363fed62b4cbb83c36de68c3024.tar.bz2 scummvm-rg350-828ed66555b99363fed62b4cbb83c36de68c3024.zip |
Reinstated static inline Graphics::PixelFormat::createFormatCLUT8(), which I am told was not supposed to be removed with the others.
svn-id: r42268
Diffstat (limited to 'common')
-rw-r--r-- | common/system.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/common/system.h b/common/system.h index 63825f8401..6bcf746292 100644 --- a/common/system.h +++ b/common/system.h @@ -375,7 +375,7 @@ public: * 3) Graphics::PixelFormat(4, 0, 0, 0, 0, 24, 16, 8, 0) * 4) Graphics::PixelFormat(2, 3, 3, 3, 8, 10, 5, 0, 0) - * 5) Graphics::PixelFormat(1, 8, 8, 8, 8, 0, 0, 0, 0) + * 5) Graphics::PixelFormat::createFormatCLUT8() * * @see Graphics::PixelFormat * @@ -387,12 +387,12 @@ public: virtual Common::List<Graphics::PixelFormat> getSupportedFormats() const = 0; #else inline Graphics::PixelFormat getScreenFormat() const { - return Graphics::PixelFormat(1, 8, 8, 8, 8, 0, 0, 0, 0); + return Graphics::PixelFormat::createFormatCLUT8(); }; inline Common::List<Graphics::PixelFormat> getSupportedFormats() const { Common::List<Graphics::PixelFormat> list; - list.push_back(Graphics::PixelFormat(1, 8, 8, 8, 8, 0, 0, 0, 0)); + list.push_back(Graphics::PixelFormat::createFormatCLUT8()); return list; }; #endif |