summaryrefslogtreecommitdiffstats
path: root/gui
diff options
context:
space:
mode:
Diffstat (limited to 'gui')
-rw-r--r--gui/mplayer/mw.c2
-rw-r--r--gui/mplayer/pb.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/gui/mplayer/mw.c b/gui/mplayer/mw.c
index 142eca3185..1762eea45d 100644
--- a/gui/mplayer/mw.c
+++ b/gui/mplayer/mw.c
@@ -65,7 +65,7 @@ void mplMainDraw( void )
btnModify( evSetMoviePosition,guiIntfStruct.Position );
btnModify( evSetVolume,guiIntfStruct.Volume );
- memcpy( mplDrawBuffer,appMPlayer.main.Bitmap.Image,appMPlayer.main.Bitmap.ImageSize );
+ fast_memcpy( mplDrawBuffer,appMPlayer.main.Bitmap.Image,appMPlayer.main.Bitmap.ImageSize );
Render( &appMPlayer.mainWindow,appMPlayer.Items,appMPlayer.NumberOfItems,mplDrawBuffer,appMPlayer.main.Bitmap.ImageSize );
mplMainRender=0;
}
diff --git a/gui/mplayer/pb.c b/gui/mplayer/pb.c
index 3fad991c28..0a06abf9b0 100644
--- a/gui/mplayer/pb.c
+++ b/gui/mplayer/pb.c
@@ -88,7 +88,7 @@ void mplPBDraw( void )
vo_mouse_autohide=0;
- memcpy( mplPBDrawBuffer,appMPlayer.bar.Bitmap.Image,appMPlayer.bar.Bitmap.ImageSize );
+ fast_memcpy( mplPBDrawBuffer,appMPlayer.bar.Bitmap.Image,appMPlayer.bar.Bitmap.ImageSize );
Render( &appMPlayer.barWindow,appMPlayer.barItems,appMPlayer.NumberOfBarItems,mplPBDrawBuffer,appMPlayer.bar.Bitmap.ImageSize );
wsConvert( &appMPlayer.barWindow,mplPBDrawBuffer,appMPlayer.bar.Bitmap.ImageSize );
}