Commit 84d77c9d authored by Reece H. Dunn's avatar Reece H. Dunn Committed by Alexandre Julliard

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

parent f096dae3
...@@ -585,7 +585,7 @@ static void do_parse_theme(WCHAR *file) ...@@ -585,7 +585,7 @@ static void do_parse_theme(WCHAR *file)
sscanf(keyNameValueA, "%d %d %d", &red, &green, &blue); 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); HeapFree(GetProcessHeap(), 0, keyNameValueA);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment