summaryrefslogtreecommitdiffstats
path: root/Gui/mplayer/menu.h
diff options
context:
space:
mode:
Diffstat (limited to 'Gui/mplayer/menu.h')
-rw-r--r--Gui/mplayer/menu.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/Gui/mplayer/menu.h b/Gui/mplayer/menu.h
index edeff7f9e3..3e67e9c32f 100644
--- a/Gui/mplayer/menu.h
+++ b/Gui/mplayer/menu.h
@@ -9,8 +9,8 @@ void mplHideMenu( int mx,int my,int w );
void mplMenuDraw( wsParamDisplay )
{
- unsigned int * buf = NULL;
- unsigned int * drw = NULL;
+ uint32_t * buf = NULL;
+ uint32_t * drw = NULL;
int x,y,tmp;
if ( !appMPlayer.menuBase.Bitmap.Image ) return;
@@ -22,8 +22,8 @@ void mplMenuDraw( wsParamDisplay )
// ---
if ( mplMenuItem != -1 )
{
- buf=(unsigned int *)mplMenuDrawBuffer;
- drw=(unsigned int *)appMPlayer.menuSelected.Bitmap.Image;
+ buf=(uint32_t *)mplMenuDrawBuffer;
+ drw=(uint32_t *)appMPlayer.menuSelected.Bitmap.Image;
for ( y=appMPlayer.MenuItems[ mplMenuItem ].y; y < appMPlayer.MenuItems[ mplMenuItem ].y + appMPlayer.MenuItems[ mplMenuItem ].height; y++ )
for ( x=appMPlayer.MenuItems[ mplMenuItem ].x; x < appMPlayer.MenuItems[ mplMenuItem ].x + appMPlayer.MenuItems[ mplMenuItem ].width; x++ )
{