# HG changeset patch # User diego # Date 1211895050 0 # Node ID 2216ca79fb130a8c86717ad648b1f148b72d96b2 # Parent e61b6352f32f00a1dbbe719d8d4b8768a4c796cb Fix typo in string name. diff -r e61b6352f32f -r 2216ca79fb13 help/help_mp-en.h --- a/help/help_mp-en.h Tue May 27 13:09:40 2008 +0000 +++ b/help/help_mp-en.h Tue May 27 13:30:50 2008 +0000 @@ -1712,7 +1712,7 @@ #define MSGTR_LIBVO_MGA_IncompatibleDriverVersion "[MGA] Your mga_vid driver version is incompatible with this MPlayer version!\n" #define MSGTR_LIBVO_MGA_CouldntOpen "[MGA] Couldn't open: %s\n" #define MGSTR_LIBVO_MGA_ResolutionTooHigh "[MGA] Source resolution is in at least one dimension larger than 1023x1023. Please rescale in software or use -lavdopts lowres=1\n" -#define MGSTR_LIBVO_MGA_mgavidVersionMissmatch "[MGA] The version of the mga_vid driver (%u) does not match the version with which MPlayer was compiled with (%u)\n" +#define MGSTR_LIBVO_MGA_mgavidVersionMismatch "[MGA] The version of the mga_vid driver (%u) does not match the version with which MPlayer was compiled with (%u)\n" // libvo/vesa_lvo.c diff -r e61b6352f32f -r 2216ca79fb13 libvo/mga_common.c --- a/libvo/mga_common.c Tue May 27 13:09:40 2008 +0000 +++ b/libvo/mga_common.c Tue May 27 13:30:50 2008 +0000 @@ -467,7 +467,7 @@ ioctl(f,MGA_VID_GET_VERSION,&ver); if(MGA_VID_VERSION != ver) { - mp_msg(MSGT_VO, MSGL_ERR, MGSTR_LIBVO_MGA_mgavidVersionMissmatch, ver, MGA_VID_VERSION); + mp_msg(MSGT_VO, MSGL_ERR, MGSTR_LIBVO_MGA_mgavidVersionMismatch, ver, MGA_VID_VERSION); return -1; }