aboutsummaryrefslogtreecommitdiff
path: root/engines/sherlock/screen.cpp
diff options
context:
space:
mode:
authorPaul Gilbert2015-09-06 20:52:15 -0400
committerPaul Gilbert2015-09-06 20:52:15 -0400
commite0ad8a9ef56095df91273b1d27c6511d702546fd (patch)
tree53edcac9fb63d46196a9947052ae05ba66a82517 /engines/sherlock/screen.cpp
parent735bd2c3f7ddce6eefa4dacf396df1180e93373e (diff)
downloadscummvm-rg350-e0ad8a9ef56095df91273b1d27c6511d702546fd.tar.gz
scummvm-rg350-e0ad8a9ef56095df91273b1d27c6511d702546fd.tar.bz2
scummvm-rg350-e0ad8a9ef56095df91273b1d27c6511d702546fd.zip
SHERLOCK: 3DO: Set up RGB color constants for 3DO
Diffstat (limited to 'engines/sherlock/screen.cpp')
-rw-r--r--engines/sherlock/screen.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/sherlock/screen.cpp b/engines/sherlock/screen.cpp
index 4233bca0cb..a5241524ef 100644
--- a/engines/sherlock/screen.cpp
+++ b/engines/sherlock/screen.cpp
@@ -460,7 +460,7 @@ void Screen::blockMove() {
blockMove(Common::Rect(0, 0, w(), h()));
}
-void Screen::print(const Common::Point &pt, byte color, const char *formatStr, ...) {
+void Screen::print(const Common::Point &pt, uint color, const char *formatStr, ...) {
// Create the string to display
va_list args;
va_start(args, formatStr);
@@ -488,7 +488,7 @@ void Screen::print(const Common::Point &pt, byte color, const char *formatStr, .
slamRect(textBounds);
}
-void Screen::gPrint(const Common::Point &pt, byte color, const char *formatStr, ...) {
+void Screen::gPrint(const Common::Point &pt, uint color, const char *formatStr, ...) {
// Create the string to display
va_list args;
va_start(args, formatStr);
@@ -499,7 +499,7 @@ void Screen::gPrint(const Common::Point &pt, byte color, const char *formatStr,
writeString(str, pt, color);
}
-void Screen::writeString(const Common::String &str, const Common::Point &pt, byte overrideColor) {
+void Screen::writeString(const Common::String &str, const Common::Point &pt, uint overrideColor) {
Fonts::writeString(_backBuffer, str, pt, overrideColor);
}