diff options
| author | Paul Gilbert | 2015-09-09 08:15:59 -0400 | 
|---|---|---|
| committer | Paul Gilbert | 2015-09-09 08:15:59 -0400 | 
| commit | 1a92f869b8b34f70eb41ed6cad0937f9d45ba46a (patch) | |
| tree | fedbf41c7437d601489704978fab281fa31e2ced /engines/sherlock/surface.cpp | |
| parent | 834955959802dce12286bbeed3e5f628a3236c86 (diff) | |
| download | scummvm-rg350-1a92f869b8b34f70eb41ed6cad0937f9d45ba46a.tar.gz scummvm-rg350-1a92f869b8b34f70eb41ed6cad0937f9d45ba46a.tar.bz2 scummvm-rg350-1a92f869b8b34f70eb41ed6cad0937f9d45ba46a.zip  | |
SHERLOCK: 3DO: Change more color method params from byte to uint
Diffstat (limited to 'engines/sherlock/surface.cpp')
| -rw-r--r-- | engines/sherlock/surface.cpp | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/sherlock/surface.cpp b/engines/sherlock/surface.cpp index b8ceae25cb..2090a334a1 100644 --- a/engines/sherlock/surface.cpp +++ b/engines/sherlock/surface.cpp @@ -262,11 +262,11 @@ void Surface::setPixels(byte *pixels, int width, int height, Graphics::PixelForm  	_surface.setPixels(pixels);  } -void Surface::writeString(const Common::String &str, const Common::Point &pt, byte overrideColor) { +void Surface::writeString(const Common::String &str, const Common::Point &pt, uint overrideColor) {  	Fonts::writeString(this, str, pt, overrideColor);  } -void Surface::writeFancyString(const Common::String &str, const Common::Point &pt, byte overrideColor1, byte overrideColor2) { +void Surface::writeFancyString(const Common::String &str, const Common::Point &pt, uint overrideColor1, uint overrideColor2) {  	writeString(str, Common::Point(pt.x, pt.y), overrideColor1);  	writeString(str, Common::Point(pt.x + 1, pt.y), overrideColor1);  	writeString(str, Common::Point(pt.x + 2, pt.y), overrideColor1);  | 
