[Scummvm-cvs-logs] scummvm master -> 225f0ad3dce3bbfcf7c361f3797b9ef0afe2e73a

DrMcCoy drmccoy at drmccoy.de
Fri Aug 26 04:49:13 CEST 2011


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
225f0ad3dc GOB: Fix EGA palette animation


Commit: 225f0ad3dce3bbfcf7c361f3797b9ef0afe2e73a
    https://github.com/scummvm/scummvm/commit/225f0ad3dce3bbfcf7c361f3797b9ef0afe2e73a
Author: Sven Hesse (drmccoy at users.sourceforge.net)
Date: 2011-08-25T19:45:34-07:00

Commit Message:
GOB: Fix EGA palette animation

The Geisha intro is now watchable

Changed paths:
    engines/gob/inter_v1.cpp



diff --git a/engines/gob/inter_v1.cpp b/engines/gob/inter_v1.cpp
index 47b0bea..8d675d1 100644
--- a/engines/gob/inter_v1.cpp
+++ b/engines/gob/inter_v1.cpp
@@ -1094,6 +1094,8 @@ void Inter_v1::o1_palLoad(OpFuncParams &params) {
 			_vm->_draw->_vgaPalette[i].green = _vm->_game->_script->readByte();
 			_vm->_draw->_vgaPalette[i].blue  = _vm->_game->_script->readByte();
 		}
+
+		memcpy(_vm->_draw->_vgaSmallPalette, _vm->_draw->_vgaPalette, 16 * 3);
 		break;
 
 	case 53:






More information about the Scummvm-git-logs mailing list