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

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