Mercurial > mplayer.hg
changeset 35606:3faac0ea318e
Cosmetic: Switch addends.
Emphasize that it is a parameter to uiEventHandling() for evSetAspect.
author | ib |
---|---|
date | Wed, 19 Dec 2012 14:13:36 +0000 |
parents | 71f19d352561 |
children | 9bc76ce5b1df |
files | gui/dialog/menu.c |
diffstat | 1 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/gui/dialog/menu.c Wed Dec 19 13:58:06 2012 +0000 +++ b/gui/dialog/menu.c Wed Dec 19 14:13:36 2012 +0000 @@ -578,10 +578,10 @@ // if ( guiInfo.Playing ) { AspectMenu=AddSubMenu( window1, (const char*)aspect_xpm, Menu,MSGTR_MENU_AspectRatio ); - AddMenuItem( window1, (const char*)aspect11_xpm, AspectMenu,MSGTR_MENU_Original,( 1 << 16 ) + evSetAspect ); - AddMenuItem( window1, (const char*)aspect169_xpm, AspectMenu,"16:9",( 2 << 16 ) + evSetAspect ); - AddMenuItem( window1, (const char*)aspect43_xpm, AspectMenu,"4:3",( 3 << 16 ) + evSetAspect ); - AddMenuItem( window1, (const char*)aspect235_xpm, AspectMenu,"2.35",( 4 << 16 ) + evSetAspect ); + AddMenuItem( window1, (const char*)aspect11_xpm, AspectMenu,MSGTR_MENU_Original,evSetAspect + ( 1 << 16 ) ); + AddMenuItem( window1, (const char*)aspect169_xpm, AspectMenu,"16:9",evSetAspect + ( 2 << 16 ) ); + AddMenuItem( window1, (const char*)aspect43_xpm, AspectMenu,"4:3",evSetAspect + ( 3 << 16 ) ); + AddMenuItem( window1, (const char*)aspect235_xpm, AspectMenu,"2.35",evSetAspect + ( 4 << 16 ) ); } if ( guiInfo.Playing && demuxer && guiInfo.StreamType != STREAMTYPE_DVD )