mirror of
https://github.com/reactos/reactos.git
synced 2025-01-02 20:43:18 +00:00
[WIN32K]
Fix missing colorTriple increment when creating the color table in GreGetDIBitsInternal. svn path=/trunk/; revision=57510
This commit is contained in:
parent
35de366b5b
commit
4bebb78d5e
1 changed files with 1 additions and 0 deletions
|
@ -815,6 +815,7 @@ GreGetDIBitsInternal(
|
|||
colorTriple->rgbtRed = (r * 0xff) / 5;
|
||||
colorTriple->rgbtGreen = (g * 0xff) / 5;
|
||||
colorTriple->rgbtBlue = (b * 0xff) / 5;
|
||||
colorTriple++;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue