diff options
author | Jody Northup | 2009-06-11 05:56:00 +0000 |
---|---|---|
committer | Jody Northup | 2009-06-11 05:56:00 +0000 |
commit | 6adbd0c41e79b5a21f0430e060347d4978e9ce78 (patch) | |
tree | e8d99c06d597b74a64b7d1590885c13db2f03010 /engines/engine.h | |
parent | b4c44a018b636a9805c725f9a286e58be554afc2 (diff) | |
download | scummvm-rg350-6adbd0c41e79b5a21f0430e060347d4978e9ce78.tar.gz scummvm-rg350-6adbd0c41e79b5a21f0430e060347d4978e9ce78.tar.bz2 scummvm-rg350-6adbd0c41e79b5a21f0430e060347d4978e9ce78.zip |
Renamed Graphics::ColorFormat to Graphics::ColorMode, streamlined enum by removing order section and temporarily removing kFormatARGB1555
Converted cursor code to make use of _screenFormat, instead of a parameter passed directly to it by the engine.
Adjusted scumm engine to account for these changes.
This should probably have been two separate commits, but the changes concern the same files...
svn-id: r41443
Diffstat (limited to 'engines/engine.h')
-rw-r--r-- | engines/engine.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/engine.h b/engines/engine.h index 8538cc779f..87ee70b1b9 100644 --- a/engines/engine.h +++ b/engines/engine.h @@ -63,7 +63,7 @@ void initCommonGFX(bool defaultTo1XScaler); * mode. */ #ifdef ENABLE_16BIT -void initGraphics(int width, int height, bool defaultTo1xScaler, Common::List<Graphics::ColorFormat> formatList); +void initGraphics(int width, int height, bool defaultTo1xScaler, Common::List<Graphics::ColorMode> formatList); #endif void initGraphics(int width, int height, bool defaultTo1xScaler); |