http://bugs.winehq.org/show_bug.cgi?id=11950
Mathias Kosch info@mkosch.de changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |info@mkosch.de
--- Comment #30 from Mathias Kosch info@mkosch.de 2008-07-15 22:02:18 --- I took a look at the source code of wine 1.1.1 and found the mistake inside "winex11.drv".
Inside the optimization code is a mistake in the following line:
dbits = (LPBYTE)bits + (dstwidthb * (lines-1));
Instead it shoud be:
dbits = (LPBYTE)dbits + (dstwidthb * (lines-1));
After correcting this and recompiling "The Bat!" now shows all the icons properly. I also provided a patch against wine 1.1.1.