aboutsummaryrefslogtreecommitdiff
path: root/engines/scumm
diff options
context:
space:
mode:
authorBertrand Augereau2012-09-01 14:14:23 +0200
committerBertrand Augereau2012-09-01 14:14:23 +0200
commit09f193352ae519e69bf704620a7351830e3495d6 (patch)
tree57b75c94fd1d3dd034b0b42b82f56dfc52337982 /engines/scumm
parentddffd74094768fe7c992c568d484de06f389b7a0 (diff)
downloadscummvm-rg350-09f193352ae519e69bf704620a7351830e3495d6.tar.gz
scummvm-rg350-09f193352ae519e69bf704620a7351830e3495d6.tar.bz2
scummvm-rg350-09f193352ae519e69bf704620a7351830e3495d6.zip
SCUMM: PCESetCostumeData should have static linking
Diffstat (limited to 'engines/scumm')
-rw-r--r--engines/scumm/costume.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/scumm/costume.cpp b/engines/scumm/costume.cpp
index 6e7e9ff688..3f89bc9611 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;