From 9d75047211c04cc9cb1eb04fb53ebb1aacf0d326 Mon Sep 17 00:00:00 2001 From: tron Date: Thu, 30 Jun 2005 05:27:32 +0000 Subject: (svn r2497) Use a struct array for palette entries instead of a flat byte array --- win32.c | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'win32.c') diff --git a/win32.c b/win32.c index e2850c320..498144c7e 100644 --- a/win32.c +++ b/win32.c @@ -50,17 +50,16 @@ static void MakePalette(void) { LOGPALETTE *pal; uint i; - byte *b; pal = alloca(sizeof(LOGPALETTE) + (256-1) * sizeof(PALETTEENTRY)); pal->palVersion = 0x300; pal->palNumEntries = 256; - for (i = 0, b = _cur_palette; i != 256; i++, b += 3) { - pal->palPalEntry[i].peRed = b[0]; - pal->palPalEntry[i].peGreen = b[1]; - pal->palPalEntry[i].peBlue = b[2]; + for (i = 0; i != 256; i++) { + pal->palPalEntry[i].peRed = _cur_palette[i].r; + pal->palPalEntry[i].peGreen = _cur_palette[i].g; + pal->palPalEntry[i].peBlue = _cur_palette[i].b; pal->palPalEntry[i].peFlags = 0; } -- cgit v1.2.3-70-g09d2