http://bugs.winehq.org/show_bug.cgi?id=7910
------- Additional Comments From b.buschinski@web.de 2007-13-04 19:46 ------- Created an attachment (id=5762) --> (http://bugs.winehq.org/attachment.cgi?id=5762&action=view) drawprim typo fix
The Bug was introduced with git commit 71f923a6d20785ebd43bae9186f62c0029ca0db0
It is just a typo: if (Value != NULL) doSomething(); else doSomeElse();
turned into
if (Value != NULL) doSomeElse(); ... if (Value != NULL) doSomething();
this patch fixes the typo and the game menu has normal colors again