correction to palette

svn-id: r28283
This commit is contained in:
Paweł Kołodziejski 2007-07-29 06:37:45 +00:00
parent 88c1e31d68
commit 35eb799b8e
2 changed files with 3 additions and 3 deletions

View File

@ -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);
}

View File

@ -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 *);