From b0c6610ac98ca35d2cbb3a0e9c00d4d43e6d98cd Mon Sep 17 00:00:00 2001 From: Jan Rysavy Date: Tue, 7 Oct 2025 09:28:19 +0200 Subject: [PATCH] AI-REVIEW test --- src/bitmap.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bitmap.cpp b/src/bitmap.cpp index 89ae82875..44ddf36be 100644 --- a/src/bitmap.cpp +++ b/src/bitmap.cpp @@ -218,7 +218,7 @@ BOOL CBitmap::Enlarge(int width, int height) width = Width; if (Height > height) height = Height; - // try to create a larger bitmap + // try to create a larger bitmap [AI-REVIEW] // !CAUTION! Sal 2.5b6 was slow when painting to Viewer (PgDn) compared to 2.0 // Caused by creating the cache with CreateBitmap() instead of CreateCompatibleBitmap() // According to MSDN, CreateBitmap() should only be used for B&W bitmaps.