summaryrefslogtreecommitdiffstats
path: root/spudec.c
diff options
context:
space:
mode:
Diffstat (limited to 'spudec.c')
-rw-r--r--spudec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/spudec.c b/spudec.c
index a79d708e38..97be17aff4 100644
--- a/spudec.c
+++ b/spudec.c
@@ -174,7 +174,7 @@ static inline unsigned char get_nibble(packet_t *packet)
static inline int mkalpha(int i)
{
/* In mplayer's alpha planes, 0 is transparent, then 1 is nearly
- opaque upto 255 which is transparent */
+ opaque upto 255 which is fully opaque */
// extend 4 -> 8 bit
i |= i << 4;
return (uint8_t)(-i);