mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-20 00:45:10 +00:00
correction to palette
svn-id: r28283
This commit is contained in:
parent
88c1e31d68
commit
35eb799b8e
@ -2149,7 +2149,7 @@ void DrasculaEngine::color_abc(int cl) {
|
||||
setvgapalette256((byte *)&palJuego);
|
||||
}
|
||||
|
||||
byte DrasculaEngine::LimitaVGA(byte valor) {
|
||||
char DrasculaEngine::LimitaVGA(char valor) {
|
||||
return (valor & 0x3F) * (valor > 0);
|
||||
}
|
||||
|
||||
|
@ -358,7 +358,7 @@ public:
|
||||
void lee_dibujos(const char *);
|
||||
void descomprime_dibujo(byte *dir_escritura, int plt);
|
||||
|
||||
typedef byte DacPalette256[256][3];
|
||||
typedef char DacPalette256[256][3];
|
||||
|
||||
void asigna_rgb(byte *dir_lectura, int plt);
|
||||
void funde_rgb(int plt);
|
||||
@ -494,7 +494,7 @@ public:
|
||||
int resta_objeto(int osj);
|
||||
void fliplay(const char *filefli, int vel);
|
||||
void FundeDelNegro(int VelocidadDeFundido);
|
||||
byte LimitaVGA(byte valor);
|
||||
char LimitaVGA(char valor);
|
||||
void color_abc(int cl);
|
||||
void centra_texto(const char *,int,int);
|
||||
void comienza_sound(const char *);
|
||||
|
Loading…
x
Reference in New Issue
Block a user