aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNorbert Lange2009-08-08 09:49:28 +0000
committerNorbert Lange2009-08-08 09:49:28 +0000
commit4e7b156e1094f0edee51d51069dc394af6bb0257 (patch)
tree7f5061a346baaf8ce8f7b3e70901d606f1dbf761
parent6dbeddab258b5b681586e4e6996acfc3f2cce2be (diff)
downloadscummvm-rg350-4e7b156e1094f0edee51d51069dc394af6bb0257.tar.gz
scummvm-rg350-4e7b156e1094f0edee51d51069dc394af6bb0257.tar.bz2
scummvm-rg350-4e7b156e1094f0edee51d51069dc394af6bb0257.zip
fix a bug that prevented gcc from compiling
correctly added my palette patch (it showed up in the rev-changes but dint got applied fully to the svn tree?) svn-id: r43116
-rw-r--r--engines/scumm/palette.cpp9
-rw-r--r--sound/mods/maxtrax.h2
2 files changed, 8 insertions, 3 deletions
diff --git a/engines/scumm/palette.cpp b/engines/scumm/palette.cpp
index 5b0183f47f..1b531f6bab 100644
--- a/engines/scumm/palette.cpp
+++ b/engines/scumm/palette.cpp
@@ -201,8 +201,13 @@ void ScummEngine::setPaletteFromPtr(const byte *ptr, int numcolor) {
assertRange(0, numcolor, 256, "setPaletteFromPtr: numcolor");
dest = _currentPalette;
+ if ((_game.platform == Common::kPlatformAmiga) && _game.version == 4 && _renderMode != Common::kRenderEGA) {
+ firstIndex = 16;
+ dest += 3 * 16;
+ ptr += 3 * 16;
+ }
- for (i = 0; i < numcolor; i++) {
+ for (i = firstIndex; i < numcolor; i++) {
r = *ptr++;
g = *ptr++;
b = *ptr++;
@@ -227,7 +232,7 @@ void ScummEngine::setPaletteFromPtr(const byte *ptr, int numcolor) {
memcpy(_darkenPalette, _currentPalette, 768);
}
- setDirtyColors(0, numcolor - 1);
+ setDirtyColors(firstIndex, numcolor - 1);
}
void ScummEngine::setDirtyColors(int min, int max) {
diff --git a/sound/mods/maxtrax.h b/sound/mods/maxtrax.h
index f5845e617f..c75a14c237 100644
--- a/sound/mods/maxtrax.h
+++ b/sound/mods/maxtrax.h
@@ -205,7 +205,7 @@ private:
int32 stopEventTime;
} _voiceCtx[kNumVoices];
- void MaxTrax::controlCh(ChannelContext &channel, byte command, byte data);
+ void controlCh(ChannelContext &channel, byte command, byte data);
void freePatches();
void freeScores();
void resetChannel(ChannelContext &chan, bool rightChannel);