aboutsummaryrefslogtreecommitdiff
path: root/gui
diff options
context:
space:
mode:
authorMax Horn2008-11-03 16:00:52 +0000
committerMax Horn2008-11-03 16:00:52 +0000
commit9e74c41dbd5050a819f4e10ce17f45f3edb534d3 (patch)
tree0bbfc7619201dea8fb1543838253ab32a4a7f4ad /gui
parent78221818e48ccb6fc48b1fa29a45083e4d2092c8 (diff)
downloadscummvm-rg350-9e74c41dbd5050a819f4e10ce17f45f3edb534d3.tar.gz
scummvm-rg350-9e74c41dbd5050a819f4e10ce17f45f3edb534d3.tar.bz2
scummvm-rg350-9e74c41dbd5050a819f4e10ce17f45f3edb534d3.zip
Fix comment
svn-id: r34880
Diffstat (limited to 'gui')
-rw-r--r--gui/ThemeEngine.cpp4
1 files changed, 2 insertions, 2 deletions
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;