diff options
author | Martin Kiewitz | 2010-01-31 16:29:02 +0000 |
---|---|---|
committer | Martin Kiewitz | 2010-01-31 16:29:02 +0000 |
commit | b21255509a65045aa7551bcacd62c0565513fa39 (patch) | |
tree | 5bdda239a2ffe7de814b454e46791ae8d46c2c6a | |
parent | 7184fa3bade28876787422e280f5475e7b23575d (diff) | |
download | scummvm-rg350-b21255509a65045aa7551bcacd62c0565513fa39.tar.gz scummvm-rg350-b21255509a65045aa7551bcacd62c0565513fa39.tar.bz2 scummvm-rg350-b21255509a65045aa7551bcacd62c0565513fa39.zip |
SCI: remove classname from header to fix build
svn-id: r47754
-rw-r--r-- | engines/sci/graphics/palette.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/graphics/palette.h b/engines/sci/graphics/palette.h index d9cdbff5e0..2806c6e8aa 100644 --- a/engines/sci/graphics/palette.h +++ b/engines/sci/graphics/palette.h @@ -51,7 +51,7 @@ public: void kernelSetFlag(uint16 fromColor, uint16 toColor, uint16 flag); void kernelUnsetFlag(uint16 fromColor, uint16 toColor, uint16 flag); void kernelSetIntensity(uint16 fromColor, uint16 toColor, uint16 intensity, bool setPalette); - int16 GfxPalette::kernelFindColor(uint16 r, uint16 g, uint16 b); + int16 kernelFindColor(uint16 r, uint16 g, uint16 b); bool kernelAnimate(byte fromColor, byte toColor, int speed); void kernelAnimateSet(); |