diff options
author | Bertrand Augereau | 2012-09-01 14:14:23 +0200 |
---|---|---|
committer | Bertrand Augereau | 2012-09-01 14:14:23 +0200 |
commit | 09f193352ae519e69bf704620a7351830e3495d6 (patch) | |
tree | 57b75c94fd1d3dd034b0b42b82f56dfc52337982 | |
parent | ddffd74094768fe7c992c568d484de06f389b7a0 (diff) | |
download | scummvm-rg350-09f193352ae519e69bf704620a7351830e3495d6.tar.gz scummvm-rg350-09f193352ae519e69bf704620a7351830e3495d6.tar.bz2 scummvm-rg350-09f193352ae519e69bf704620a7351830e3495d6.zip |
SCUMM: PCESetCostumeData should have static linking
-rw-r--r-- | engines/scumm/costume.cpp | 2 |
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; |