summaryrefslogtreecommitdiffstats
path: root/libvo/sub.c
diff options
context:
space:
mode:
authorarpi_esp <arpi_esp@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-04-12 00:41:22 +0000
committerarpi_esp <arpi_esp@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-04-12 00:41:22 +0000
commitea10512b28b42654956af52dee72926272825578 (patch)
tree8756cb8d1925843e3001c178cdf0ada226972a2d /libvo/sub.c
parent78f77d4a9d4118901b211db31723178ceadfdb81 (diff)
downloadmpv-ea10512b28b42654956af52dee72926272825578.tar.bz2
mpv-ea10512b28b42654956af52dee72926272825578.tar.xz
progress bar width increased
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@373 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo/sub.c')
-rw-r--r--libvo/sub.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libvo/sub.c b/libvo/sub.c
index ba7dfbf97c..6b3cebf01e 100644
--- a/libvo/sub.c
+++ b/libvo/sub.c
@@ -37,7 +37,7 @@ void vo_draw_text_progbar(int dxs,int dys,void (*draw_alpha)(int x0,int y0, int
int y=dys/2;
int x;
int c,font;
- int width=(dxs/2-vo_font->width[0x10]-vo_font->width[0x12]);
+ int width=(dxs*2/3-vo_font->width[0x10]-vo_font->width[0x12]);
int elems=width/vo_font->width[0x11];
int mark=(vo_osd_progbar_value*(elems+1))>>8;
x=(dxs-width)/2;