diff --git a/reactos/subsystems/win32/win32k/dib/dib16bpp.c b/reactos/subsystems/win32/win32k/dib/dib16bpp.c index 04285364bb7..ba36f3f3ce1 100644 --- a/reactos/subsystems/win32/win32k/dib/dib16bpp.c +++ b/reactos/subsystems/win32/win32k/dib/dib16bpp.c @@ -764,17 +764,17 @@ BOOLEAN DIB_16BPP_StretchBlt(SURFOBJ *DestSurf, SURFOBJ *SourceSurf, /* Calc the Zoom Width of Source */ SrcSizeX = SourceRect->right - SourceRect->left; - /* Calc the Zoom height of Destions */ + /* Calc the Zoom height of Destinations */ DesSizeY = DestRect->bottom - DestRect->top; - /* Calc the Zoom width of Destions */ + /* Calc the Zoom width of Destinations */ DesSizeX = DestRect->right - DestRect->left; - /* Calc the zoom factor of soruce height */ + /* Calc the zoom factor of source height */ SrcZoomYHight = SrcSizeY / DesSizeY; SrcZoomYLow = SrcSizeY - (SrcZoomYHight * DesSizeY); - /* Calc the zoom factor of soruce width */ + /* Calc the zoom factor of source width */ SrcZoomXHight = SrcSizeX / DesSizeX; SrcZoomXLow = SrcSizeX - (SrcZoomXHight * DesSizeX); diff --git a/reactos/subsystems/win32/win32k/dib/dib32bpp.c b/reactos/subsystems/win32/win32k/dib/dib32bpp.c index d7bd9094819..2e2c57f9597 100644 --- a/reactos/subsystems/win32/win32k/dib/dib32bpp.c +++ b/reactos/subsystems/win32/win32k/dib/dib32bpp.c @@ -516,17 +516,17 @@ BOOLEAN DIB_32BPP_StretchBlt(SURFOBJ *DestSurf, SURFOBJ *SourceSurf, /* Calc the Zoom Width of Source */ SrcSizeX = SourceRect->right - SourceRect->left; - /* Calc the Zoom height of Destions */ + /* Calc the Zoom height of Destinations */ DesSizeY = DestRect->bottom - DestRect->top; - /* Calc the Zoom width of Destions */ + /* Calc the Zoom width of Destinations */ DesSizeX = DestRect->right - DestRect->left; - /* Calc the zoom factor of soruce height */ + /* Calc the zoom factor of source height */ SrcZoomYHight = SrcSizeY / DesSizeY; SrcZoomYLow = SrcSizeY - (SrcZoomYHight * DesSizeY); - /* Calc the zoom factor of soruce width */ + /* Calc the zoom factor of source width */ SrcZoomXHight = SrcSizeX / DesSizeX; SrcZoomXLow = SrcSizeX - (SrcZoomXHight * DesSizeX); diff --git a/reactos/subsystems/win32/win32k/dib/dib8bpp.c b/reactos/subsystems/win32/win32k/dib/dib8bpp.c index 2a79bff26f9..1099dda605b 100644 --- a/reactos/subsystems/win32/win32k/dib/dib8bpp.c +++ b/reactos/subsystems/win32/win32k/dib/dib8bpp.c @@ -499,17 +499,17 @@ BOOLEAN DIB_8BPP_StretchBlt(SURFOBJ *DestSurf, SURFOBJ *SourceSurf, /* Calc the Zoom Width of Source */ SrcSizeX = SourceRect->right - SourceRect->left; - /* Calc the Zoom height of Destions */ + /* Calc the Zoom height of Destinations */ DesSizeY = DestRect->bottom - DestRect->top; - /* Calc the Zoom width of Destions */ + /* Calc the Zoom width of Destinations */ DesSizeX = DestRect->right - DestRect->left; - /* Calc the zoom factor of soruce height */ + /* Calc the zoom factor of source height */ SrcZoomYHight = SrcSizeY / DesSizeY; SrcZoomYLow = SrcSizeY - (SrcZoomYHight * DesSizeY); - /* Calc the zoom factor of soruce width */ + /* Calc the zoom factor of source width */ SrcZoomXHight = SrcSizeX / DesSizeX; SrcZoomXLow = SrcSizeX - (SrcZoomXHight * DesSizeX); @@ -677,7 +677,7 @@ BOOLEAN DIB_8BPP_StretchBlt(SURFOBJ *DestSurf, SURFOBJ *SourceSurf, for (DesX=0; DesX