aboutsummaryrefslogtreecommitdiff
path: root/engines/gob/inter_v6.cpp
diff options
context:
space:
mode:
authorSven Hesse2010-09-30 13:00:30 +0000
committerSven Hesse2010-09-30 13:00:30 +0000
commite68b6e9f15b9025cd587273da8eaa089670cc0b0 (patch)
treea6fe79793fe497a5432ac54436adcfd71e06b096 /engines/gob/inter_v6.cpp
parentb6766f0d7f94b8553b29159f98c91be35e0ca878 (diff)
downloadscummvm-rg350-e68b6e9f15b9025cd587273da8eaa089670cc0b0.tar.gz
scummvm-rg350-e68b6e9f15b9025cd587273da8eaa089670cc0b0.tar.bz2
scummvm-rg350-e68b6e9f15b9025cd587273da8eaa089670cc0b0.zip
GOB: Remove dither stuff, commenting out most v6 drawing
svn-id: r52945
Diffstat (limited to 'engines/gob/inter_v6.cpp')
-rw-r--r--engines/gob/inter_v6.cpp12
1 files changed, 0 insertions, 12 deletions
diff --git a/engines/gob/inter_v6.cpp b/engines/gob/inter_v6.cpp
index a5a4f7d666..fc81de757e 100644
--- a/engines/gob/inter_v6.cpp
+++ b/engines/gob/inter_v6.cpp
@@ -65,7 +65,6 @@ void Inter_v6::setupOpcodesFunc() {
OPCODEFUNC(0x03, o6_loadCursor);
OPCODEFUNC(0x09, o6_assign);
- OPCODEFUNC(0x13, o6_palLoad);
OPCODEFUNC(0x19, o6_removeHotspot);
OPCODEFUNC(0x33, o6_fillRect);
}
@@ -357,17 +356,6 @@ bool Inter_v6::o6_assign(OpFuncParams &params) {
return false;
}
-bool Inter_v6::o6_palLoad(OpFuncParams &params) {
- o1_palLoad(params);
-
- if (_gotFirstPalette)
- _vm->_video->_palLUT->setPalette((const byte *)_vm->_global->_pPaletteDesc->vgaPal,
- Graphics::PaletteLUT::kPaletteRGB, 6, 0);
-
- _gotFirstPalette = true;
- return false;
-}
-
bool Inter_v6::o6_removeHotspot(OpFuncParams &params) {
int16 id;
uint8 stateType1 = Hotspots::kStateFilledDisabled | Hotspots::kStateType1;