http://bugs.winehq.org/show_bug.cgi?id=12377
--- Comment #19 from Stefan Ziel stefan.ziel@terra.com.br 2008-10-02 12:27:49 --- (In reply to comment #18)
Hi Sebastian,
analyzing the trace - your wine behaves exactly as it behaved without the patch:
could you debug if it runs into "goto found" (/dlls/gdi32/freetype.c - line 3386) for the capella fonts?
or add a trace like this just to see what happens:
LIST_FOR_EACH(face_elem_ptr, &family->faces) { face = LIST_ENTRY(face_elem_ptr, Face, entry); if((csi.fs.fsCsb[0] & (face->fs.fsCsb[0] | face->fs_links.fsCsb[0])) || !csi.fs.fsCsb[0]) if(face->scalable || can_use_bitmap) { TRACE("Yes we did it\n"); goto found; } } TRACE("Sorry we passed\n");