From 9e74c41dbd5050a819f4e10ce17f45f3edb534d3 Mon Sep 17 00:00:00 2001 From: Max Horn Date: Mon, 3 Nov 2008 16:00:52 +0000 Subject: Fix comment svn-id: r34880 --- gui/ThemeEngine.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gui') diff --git a/gui/ThemeEngine.cpp b/gui/ThemeEngine.cpp index b23502b1c0..e85c714e22 100644 --- a/gui/ThemeEngine.cpp +++ b/gui/ThemeEngine.cpp @@ -1054,8 +1054,8 @@ bool ThemeEngine::createCursor(const Common::String &filename, int hotspotX, int _system->colorToRGB(src[x], r, g, b); const int col = (r << 16) | (g << 8) | b; - // Skip transparent colors - // (transparent actually is 0xFF00FF), but the RGB convert chops of the lower bits + // Skip transparency (the transparent color actually is 0xFF00FF, + // but the RGB conversion chops of the lower bits). if ((r > 0xF1) && (g < 0x03) && (b > 0xF1)) continue; -- cgit v1.2.3