Change the alpha value to 255

This commit is contained in:
theoddone33
2001-05-02 20:26:52 +00:00
parent e887170b65
commit 446406cc9f
2 changed files with 2 additions and 3 deletions

View File

@@ -335,7 +335,6 @@ void ProcessKeyBuf(int scancode)
}
}
// TODO Figure out what the rest these are supposed to be - DDOI
// printf("Scancode : %i Left : %i Right : %i\n", scancode, SDLK_LEFT, SDLK_RIGHT);
switch (scancode) {
case SDLK_PAGEUP: vkeyval=256+73; accept=true; break;
case SDLK_UP: vkeyval=256+72; accept=true; break;
@@ -481,7 +480,7 @@ int startgame(void)
{
color32=((i&0xF800)<<8)+
((i&0x07E0)<<5)+
((i&0x001F)<<3)+0x7F000000;
((i&0x001F)<<3)+0xFF000000;
(*(unsigned int *)(ScreenPtr2))=color32;
ScreenPtr2+=4;
}

View File

@@ -1045,7 +1045,7 @@ startgame()
{
color32=((i&0xF800)<<8)+
((i&0x07E0)<<5)+
((i&0x001F)<<3)+0x7F000000;
((i&0x001F)<<3)+0xFF000000;
(*(unsigned int *)(ScreenPtr2))=color32;
ScreenPtr2+=4;
}