Browse Source

Set ScummVM DXA palette opaque.

tags/n0.9
Carl Eugen Hoyos 14 years ago
parent
commit
1567243e8f
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/dxa.c

+ 1
- 1
libavcodec/dxa.c View File

@@ -209,7 +209,7 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, AVPac
r = *buf++;
g = *buf++;
b = *buf++;
c->pal[i] = (r << 16) | (g << 8) | b;
c->pal[i] = 0xFF << 24 | r << 16 | g << 8 | b;
}
pc = 1;
buf_size -= 768+4;


Loading…
Cancel
Save