mirror of
https://gitlab.winehq.org/wine/wine-staging.git
synced 2024-11-21 16:46:54 -08:00
windowscodecs-Palette_Images: Fix a typo (thanks Dmitry Timoshkov).
This commit is contained in:
parent
7b0d1a2905
commit
a0e9a41f77
@ -147,7 +147,7 @@ index b4b7e22..946eccd 100644
|
||||
+
|
||||
+ for (i = 0; i < This->colors; i++)
|
||||
+ {
|
||||
+ red[i] = (This->palette[i] >> 0) & 0xff00;
|
||||
+ red[i] = (This->palette[i] >> 8) & 0xff00;
|
||||
+ green[i] = This->palette[i] & 0xff00;
|
||||
+ blue[i] = (This->palette[i] << 8) & 0xff00;
|
||||
+ }
|
||||
|
Loading…
Reference in New Issue
Block a user