Re: gdi32: Fix 64-bit pointer issues when copying upside-down bitmaps.

2011-02-25 Thread Peter Urbanec
On 26/02/11 00:05, Marcus Meissner wrote: diff --git a/dlls/gdi32/dib.c b/dlls/gdi32/dib.c index 0619304..595eb9b 100644 --- a/dlls/gdi32/dib.c +++ b/dlls/gdi32/dib.c @@ -885,7 +885,7 @@ INT WINAPI GetDIBits( */ if (bmp->dib->dsBmih.biHeight< 0) { -

Re: gdi32: Fix 64-bit pointer issues when copying upside-down bitmaps.

2011-02-25 Thread Marcus Meissner
On Fri, Feb 25, 2011 at 11:41:31PM +1100, Peter Urbanec wrote: > --- > dlls/gdi32/dib.c |2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > > diff --git a/dlls/gdi32/dib.c b/dlls/gdi32/dib.c > index 0619304..595eb9b 100644 > --- a/dlls/gdi32/dib.c > +++ b/dlls/gdi32/dib.c > @@ -88