aboutsummaryrefslogtreecommitdiff
path: root/gfx.cpp
diff options
context:
space:
mode:
authorVincent Hamm2002-03-24 17:49:47 +0000
committerVincent Hamm2002-03-24 17:49:47 +0000
commit92a19c45aef3f0e34dfcc5caf2b7f5e65295d00f (patch)
treed5b45dfe999b9c73264191e45abb1016837912f6 /gfx.cpp
parent14e6021141ae06673f2ad8d92c60f8499e897ae8 (diff)
downloadscummvm-rg350-92a19c45aef3f0e34dfcc5caf2b7f5e65295d00f.tar.gz
scummvm-rg350-92a19c45aef3f0e34dfcc5caf2b7f5e65295d00f.tar.bz2
scummvm-rg350-92a19c45aef3f0e34dfcc5caf2b7f5e65295d00f.zip
Fixed pal init
svn-id: r3815
Diffstat (limited to 'gfx.cpp')
-rw-r--r--gfx.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/gfx.cpp b/gfx.cpp
index 15d3c9a6fb..f72959d0e9 100644
--- a/gfx.cpp
+++ b/gfx.cpp
@@ -1305,7 +1305,7 @@ void Gdi::unkDecode9() {
byte *dst = _bgbak_ptr;
unsigned char c, bits, color, run;
int x, y, i, z;
- uint buffer, mask = 128;
+ uint buffer=0, mask = 128;
int h = _numLinesToProcess;
x = y = i = z = run = 0;
@@ -1374,7 +1374,7 @@ void Gdi::unkDecode11() {
byte *src = _smap_ptr;
byte *dst = _bgbak_ptr;
int bits, i;
- uint buffer, mask = 128;
+ uint buffer=0, mask = 128;
unsigned char inc = 1, color = *src++;
_currentX = 8;
@@ -1695,7 +1695,7 @@ void Scumm::moveCamera() {
if(_features & GF_AFTER_V7) {
CameraData *cd = &camera;
ScummPoint old = cd->_cur;
- Actor *a;
+ Actor *a=NULL;
if (cd->_follows) {
a = derefActorSafe(cd->_follows, "moveCamera");
@@ -1778,7 +1778,7 @@ void Scumm::moveCamera() {
CameraData *cd = &camera;
int pos = cd->_cur.x;
int actorx, t;
- Actor *a;
+ Actor *a=NULL;
cd->_cur.x &= 0xFFF8;
@@ -2309,7 +2309,7 @@ void Scumm::decompressDefaultCursor(int idx) {
int Scumm::remapPaletteColor(int r, int g, int b, uint threshold) {
int i;
int ar,ag,ab;
- uint sum,j,bestsum,bestitem;
+ uint sum,j,bestsum,bestitem=0;
byte *pal = _currentPalette;
if (r>255) r=255;