# --- T2-COPYRIGHT-NOTE-BEGIN ---
# This copyright note is auto-generated by ./scripts/Create-CopyPatch.
# 
# T2 SDE: package/.../mplayer/vc-2.6-workaround.patch
# Copyright (C) 2004 - 2005 The T2 SDE Project
# 
# More information can be found in the files COPYING and README.
# 
# This patch file is dual-licensed. It is available under the license the
# patched project is licensed under, as long as it is an OpenSource license
# as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms
# of the GNU General Public License as published by the Free Software
# Foundation; either version 2 of the License, or (at your option) any later
# version.
# --- T2-COPYRIGHT-NOTE-END ---
--- ./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