summaryrefslogtreecommitdiffstats
path: root/Gui/mplayer/common.c
diff options
context:
space:
mode:
Diffstat (limited to 'Gui/mplayer/common.c')
-rw-r--r--Gui/mplayer/common.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Gui/mplayer/common.c b/Gui/mplayer/common.c
index dd92522e96..40477c7c7d 100644
--- a/Gui/mplayer/common.c
+++ b/Gui/mplayer/common.c
@@ -268,9 +268,9 @@ void Render( wsTWindow * window,wItem * Items,int nrItems,char * db,int size )
PutImage( &item->Bitmap,
item->x,item->y,
item->phases,
- item->phases * ( item->value / 100.0f ) );
+ item->phases * ( 1. - item->value / 100.0f ) );
PutImage( &item->Mask,
- item->x,item->y + (int)( ( item->height - item->psy ) * item->value / 100.0f ),
+ item->x,item->y + (int)( ( item->height - item->psy ) * ( 1. - item->value / 100.0f ) ),
3,item->pressed );
break;
case itSLabel: