[Scummvm-cvs-logs] scummvm master -> 09f193352ae519e69bf704620a7351830e3495d6

tramboi bertrand_augereau at yahoo.fr
Sat Sep 1 14:14:55 CEST 2012


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:
09f193352a SCUMM: PCESetCostumeData should have static linking


Commit: 09f193352ae519e69bf704620a7351830e3495d6
    https://github.com/scummvm/scummvm/commit/09f193352ae519e69bf704620a7351830e3495d6
Author: Bertrand Augereau (bertrand_augereau at yahoo.fr)
Date: 2012-09-01T05:14:23-07:00

Commit Message:
SCUMM: PCESetCostumeData should have static linking

Changed paths:
    engines/scumm/costume.cpp



diff --git a/engines/scumm/costume.cpp b/engines/scumm/costume.cpp
index 6e7e9ff..3f89bc9 100644
--- a/engines/scumm/costume.cpp
+++ b/engines/scumm/costume.cpp
@@ -592,7 +592,7 @@ void ClassicCostumeRenderer::proc3_ami(Codec1 &v1) {
 	} while (1);
 }
 
-void PCESetCostumeData(byte block[16][16], int index, byte value) {
+static void PCESetCostumeData(byte block[16][16], int index, byte value) {
 	int row = (index % 16);
 	int plane = (index / 16) % 4;
 	int colOffset = (index < 64) ? 8 : 0;






More information about the Scummvm-git-logs mailing list