Change palette data_rgb to external RGBQUAD array for software rendering, it was not used before

This commit is contained in:
Toni Spets 2011-04-02 21:05:14 +03:00
parent 6e01d1c722
commit a0c80f3e83
2 changed files with 10 additions and 2 deletions

View file

@ -31,7 +31,7 @@ typedef struct IDirectDrawPaletteImpl
ULONG Ref;
int data_bgr[256];
int data_rgb[256];
RGBQUAD *data_rgb;
} IDirectDrawPaletteImpl;