Mercurial > mplayer.hg
changeset 26868:2216ca79fb13
Fix typo in string name.
author | diego |
---|---|
date | Tue, 27 May 2008 13:30:50 +0000 |
parents | e61b6352f32f |
children | 9000ee30a060 |
files | help/help_mp-en.h libvo/mga_common.c |
diffstat | 2 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- 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
--- 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; }