[Bug 22083] TrackMania Nations Forever serious graphical glitches

wine-bugs at winehq.org wine-bugs at winehq.org
Sun Mar 21 07:25:21 CDT 2010


http://bugs.winehq.org/show_bug.cgi?id=22083





--- Comment #13 from Roderick Colenbrander <thunderbird2k at gmail.com>  2010-03-21 07:25:21 ---
I have a feeling that this part is wrong:
    if (rect_in)
        rect = *rect_in;
    else
    {
        rect.left = 0;
        rect.top = 0;
        rect.right = w;
        rect.bottom = h;
    }

Change the else-part to:
    {
        rect.left = 0;
        rect.top = h;
        rect.right = w;
        rect.bottom = 0;
    }

-- 
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
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.



More information about the wine-bugs mailing list