]> git.saurik.com Git - wxWidgets.git/commitdiff
Compile fix
authorMichael Wetherell <mike.wetherell@ntlworld.com>
Sat, 16 Apr 2005 20:40:43 +0000 (20:40 +0000)
committerMichael Wetherell <mike.wetherell@ntlworld.com>
Sat, 16 Apr 2005 20:40:43 +0000 (20:40 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33680 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

samples/image/image.cpp

index c1e36cc753a2d6175851971a5eb9aecde1c56394..7bfe2db778bfb71e12cd5ee0f075341acd8aba2e 100644 (file)
@@ -321,9 +321,9 @@ public:
             {
                 // note that RGB must be premultiplied by alpha
                 unsigned a = (Data::Iterator::ChannelType)((x*255.)/REAL_SIZE);
-                p.Red() = r * alpha / 256;
-                p.Green() = g * alpha / 256;
-                p.Blue() = b * alpha / 256;
+                p.Red() = r * a / 256;
+                p.Green() = g * a / 256;
+                p.Blue() = b * a / 256;
                 p.Alpha() = a;
 
                 ++p; // same as p.OffsetX(1)