http://bugs.winehq.org/show_bug.cgi?id=2526
------- Additional Comments From rklazes@xs4all.nl 2004-22-10 09:56 ------- This is the problem:
sprintf(s, " -%s rgb:%02x%/%02x%/%02x\r\n", sw, r,g,b);
(wxtide.c->write_sw_rgb())
The %/ char sequences are output as "/" by Microsoft and as "/%" by GNU libc.
Wine currently uses the libc sprintf, you have to wait until somebody writes wine's own.