add visual studio project files

This commit is contained in:
FunkyFr3sh 2018-05-06 10:52:06 +02:00
parent aaf35ec5cf
commit 5a2748f3d1
12 changed files with 11601 additions and 33 deletions

View file

@ -109,8 +109,8 @@ HRESULT __stdcall ddraw_surface_Blt(IDirectDrawSurfaceImpl *This, LPRECT lpDestR
y0 = max(y0, lpSrcRect->top);
y1 = min(y1, lpSrcRect->bottom);
}
unsigned char* to=This->surface + dy*This->width + dx;
unsigned char* from=Source->surface + y0*Source->width + x0;
unsigned char* to = (unsigned char *)This->surface + dy*This->width + dx;
unsigned char* from = (unsigned char *)Source->surface + y0*Source->width + x0;
int s = x1-x0;
int y;