http://bugs.winehq.org/show_bug.cgi?id=55518 Louis Lenders <xerox.xerox2000x@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |xerox.xerox2000x@gmail.com URL| |https://web.archive.org/web | |/20260504192427/https://cdn | |.velleman.eu/downloads/velb | |us/velbuslink/velbuslink-10 | |.8.6.0.exe Status|UNCONFIRMED |NEW Ever confirmed|0 |1 Component|-unknown |user32 Keywords| |download --- Comment #4 from Louis Lenders <xerox.xerox2000x@gmail.com> --- Confirming. Archived it at https://web.archive.org/web/20260504192427/https://cdn.velleman.eu/downloads... This is actually a duplicate of https://bugs.winehq.org/show_bug.cgi?id=30392 So I will resolve as such. Stupid hack below allows the program to start though the GUI doesn't look great. Hack: diff --git a/dlls/user32/text.c b/dlls/user32/text.c index b757109c9b5..77f5eed0904 100644 --- a/dlls/user32/text.c +++ b/dlls/user32/text.c @@ -742,7 +742,7 @@ static const WCHAR *TEXT_NextLineW( HDC hdc, const WCHAR *str, int *count, /* If we are here after a path ellipsification it must be * because even the ellipsis itself didn't fit. */ - assert (pellip->under == 0 && pellip->after == 0); + if(!(pellip->under == 0 && pellip->after == 0)) (pellip->under = 0 && pellip->after = 0); pellip->before = before; pellip->len = len_ellipsis; /* pellip->after remains as zero as does -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.