mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

39 lines
920 B

--- ./libvo/vo_svga.c.orig 2004-06-13 17:33:53.944331344 +0300
+++ ./libvo/vo_svga.c 2004-06-13 17:33:47.920247144 +0300
@@ -395,6 +395,8 @@
return VO_NOTIMPL;
}
+extern char MSGTR_Paused_r[24];
+
//
// This function is called to init the video driver for specific mode
//
@@ -449,6 +451,7 @@
uninit();
return 1; // error
}
+ *MSGTR_Paused_r = '\r';
/* set 332 palette for 8 bpp */
if(mode_bpp==8){
int i;
--- ./mplayer.c.orig 2004-04-27 00:15:13.000000000 +0300
+++ ./mplayer.c 2004-06-13 17:30:31.619089456 +0300
@@ -707,6 +707,8 @@
#include <SDL.h>
#endif
+char MSGTR_Paused_r[24] = MSGTR_Paused;
+
int main(int argc,char* argv[]){
@@ -2409,7 +2411,7 @@
if(osd_function==OSD_PAUSE){
mp_cmd_t* cmd;
if(!quiet) {
- mp_msg(MSGT_CPLAYER,MSGL_STATUS,MSGTR_Paused);
+ mp_msg(MSGT_CPLAYER,MSGL_STATUS,MSGTR_Paused_r);
fflush(stdout);
}
#ifdef HAVE_NEW_GUI