aboutsummaryrefslogtreecommitdiff
path: root/engines/groovie
diff options
context:
space:
mode:
authorHenry Bush2009-07-05 22:57:58 +0000
committerHenry Bush2009-07-05 22:57:58 +0000
commit4b1c6b526dbfa8d084fbd2475b4d4caa173e442c (patch)
treeb6c3c0e705a49a41fd8726271aa498e65e0eabe3 /engines/groovie
parent4656019e8a2f92f708a685be6d3d95edd7ee8d6d (diff)
downloadscummvm-rg350-4b1c6b526dbfa8d084fbd2475b4d4caa173e442c.tar.gz
scummvm-rg350-4b1c6b526dbfa8d084fbd2475b4d4caa173e442c.tar.bz2
scummvm-rg350-4b1c6b526dbfa8d084fbd2475b4d4caa173e442c.zip
Groovie: get hotspots working correctly in 11H RGB
svn-id: r42158
Diffstat (limited to 'engines/groovie')
-rw-r--r--engines/groovie/graphics.cpp4
-rw-r--r--engines/groovie/groovie.cpp1
-rw-r--r--engines/groovie/script.cpp2
3 files changed, 4 insertions, 3 deletions
diff --git a/engines/groovie/graphics.cpp b/engines/groovie/graphics.cpp
index 647eaa913b..1e54f0e79b 100644
--- a/engines/groovie/graphics.cpp
+++ b/engines/groovie/graphics.cpp
@@ -31,8 +31,8 @@ namespace Groovie {
GraphicsMan::GraphicsMan(GroovieEngine *vm) :
_vm(vm), _changed(false), _fading(0) {
// Create the game surfaces
- _foreground.create(640, 320, 1);
- _background.create(640, 320, 1);
+ _foreground.create(640, 320, _vm->_pixelFormat.bytesPerPixel);
+ _background.create(640, 320, _vm->_pixelFormat.bytesPerPixel);
}
GraphicsMan::~GraphicsMan() {
diff --git a/engines/groovie/groovie.cpp b/engines/groovie/groovie.cpp
index f5db99dd4a..24f47351a3 100644
--- a/engines/groovie/groovie.cpp
+++ b/engines/groovie/groovie.cpp
@@ -82,6 +82,7 @@ Common::Error GroovieEngine::run() {
break;
case kGroovieT7G:
initGraphics(640, 480, true);
+ _pixelFormat = Graphics::PixelFormat::createFormatCLUT8();
break;
}
diff --git a/engines/groovie/script.cpp b/engines/groovie/script.cpp
index eb53842b91..934400fb15 100644
--- a/engines/groovie/script.cpp
+++ b/engines/groovie/script.cpp
@@ -354,7 +354,7 @@ bool Script::hotspot(Common::Rect rect, uint16 address, uint8 cursor) {
Common::isDebugChannelEnabled(kGroovieDebugAll)) {
rect.translate(0, -80);
_vm->_graphicsMan->_foreground.frameRect(rect, 250);
- _vm->_system->copyRectToScreen((byte*)_vm->_graphicsMan->_foreground.getBasePtr(0, 0), 640, 0, 80, 640, 320);
+ _vm->_system->copyRectToScreen((byte*)_vm->_graphicsMan->_foreground.getBasePtr(0, 0), _vm->_graphicsMan->_foreground.pitch, 0, 80, 640, 320);
_vm->_system->updateScreen();
}