Browse Source

Palette fix

louyihua 9 years ago
parent
commit
5d8a852b01
1 changed files with 1 additions and 4 deletions
  1. 1 4
      video.c

+ 1 - 4
video.c

@@ -612,10 +612,7 @@ VIDEO_SetPalette(
       return;
       return;
    }
    }
 
 
-   for (i = 0; i < 256; i++)
-   {
-      palette->colors[i] = rgPalette[i];
-   }
+   SDL_SetPaletteColors(palette, rgPalette, 0, 256);
 
 
    SDL_SetSurfacePalette(gpScreen, palette);
    SDL_SetSurfacePalette(gpScreen, palette);
    SDL_SetSurfacePalette(gpScreenBak, palette);
    SDL_SetSurfacePalette(gpScreenBak, palette);