From 03b1d6b74d13dd51a53d2531becb4137b96fa1ed Mon Sep 17 00:00:00 2001 From: "FWoltermann@gmail.com" Date: Sun, 27 May 2012 09:39:31 +0000 Subject: A few things MSVC's analyzer found. --- nGenEx/Bitmap.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'nGenEx/Bitmap.cpp') diff --git a/nGenEx/Bitmap.cpp b/nGenEx/Bitmap.cpp index d192d7c..819a083 100644 --- a/nGenEx/Bitmap.cpp +++ b/nGenEx/Bitmap.cpp @@ -231,6 +231,7 @@ Bitmap::BitBlt(int x, int y, const Bitmap& srcBmp, int sx, int sy, int w, int h, Color* src = srcBmp.HiPixels() + (sy*spitch) + sx; for (int i = 0; i < h; i++) { +#pragma warning(suppress: 28183) memcpy(dst, src, rowlen); dst += dpitch; src += spitch; -- cgit v1.1