From d7bb353d156114e8aa57f10860cd476a7c326c94 Mon Sep 17 00:00:00 2001 From: pontscho Date: Thu, 7 Mar 2002 15:06:02 +0000 Subject: PlayToPause bug with mouse fixed git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4980 b3059339-0415-0410-9bf9-f77b7e298cf2 --- Gui/mplayer/mw.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'Gui/mplayer/mw.h') diff --git a/Gui/mplayer/mw.h b/Gui/mplayer/mw.h index fc39df24ef..c4b5de0a1e 100644 --- a/Gui/mplayer/mw.h +++ b/Gui/mplayer/mw.h @@ -23,7 +23,8 @@ inline void TranslateFilename( int c,char * tmp ) case STREAMTYPE_FILE: if ( ( guiIntfStruct.Filename )&&( guiIntfStruct.Filename[0] ) ) { - strcpy( tmp,guiIntfStruct.Filename ); + if ( strrchr( guiIntfStruct.Filename,'/' ) ) strcpy( tmp,strrchr( guiIntfStruct.Filename,'/' ) + 1 ); + else strcpy( tmp,guiIntfStruct.Filename ); if ( tmp[strlen( tmp ) - 4] == '.' ) tmp[strlen( tmp ) - 4]=0; if ( tmp[strlen( tmp ) - 5] == '.' ) tmp[strlen( tmp ) - 5]=0; } else strcpy( tmp,"no file loaded" ); -- cgit v1.2.3