winecfg: Fixed reading in colour data from a theme file.

This commit is contained in:
Reece H. Dunn 2008-02-10 16:22:26 +00:00 committed by Alexandre Julliard
parent f096dae361
commit 84d77c9d2c
1 changed files with 1 additions and 1 deletions

View File

@ -585,7 +585,7 @@ static void do_parse_theme(WCHAR *file)
sscanf(keyNameValueA, "%d %d %d", &red, &green, &blue);
color = RGB((BYTE)red, (BYTE)blue, (BYTE)green);
color = RGB((BYTE)red, (BYTE)green, (BYTE)blue);
HeapFree(GetProcessHeap(), 0, keyNameValueA);