summaryrefslogtreecommitdiffstats
path: root/libvo
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-12-09 20:25:49 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-12-09 20:25:49 +0000
commit57f19d3935c9caa6d36436300c791eaa05d36b48 (patch)
tree866dee2c812c6d65a1fd471a0628710960c6c146 /libvo
parent98d227c9fdb0146c5f037d6020a73990aacc24e9 (diff)
downloadmpv-57f19d3935c9caa6d36436300c791eaa05d36b48.tar.bz2
mpv-57f19d3935c9caa6d36436300c791eaa05d36b48.tar.xz
Fix MGSTR vs. MSGTR typo.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28122 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo')
-rw-r--r--libvo/mga_common.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libvo/mga_common.c b/libvo/mga_common.c
index e7705025b5..6d222a215f 100644
--- a/libvo/mga_common.c
+++ b/libvo/mga_common.c
@@ -385,7 +385,7 @@ static int mga_init(int width,int height,unsigned int format){
if(width > 1024 && height > 1024)
{
- mp_msg(MSGT_VO,MSGL_ERR, MGSTR_LIBVO_MGA_ResolutionTooHigh);
+ mp_msg(MSGT_VO,MSGL_ERR, MSGTR_LIBVO_MGA_ResolutionTooHigh);
return -1;
} else if(height <= 1024)
{
@@ -396,7 +396,7 @@ static int mga_init(int width,int height,unsigned int format){
if(mga_vid_config.card_type != MGA_G550)
{
// we don't have a G550, so our resolution is too high
- mp_msg(MSGT_VO,MSGL_ERR, MGSTR_LIBVO_MGA_ResolutionTooHigh);
+ mp_msg(MSGT_VO,MSGL_ERR, MSGTR_LIBVO_MGA_ResolutionTooHigh);
return -1;
} else {
// there is a deeper problem
@@ -467,7 +467,7 @@ static int preinit(const char *vo_subdevice)
ioctl(f,MGA_VID_GET_VERSION,&ver);
if(MGA_VID_VERSION != ver)
{
- mp_msg(MSGT_VO, MSGL_ERR, MGSTR_LIBVO_MGA_mgavidVersionMismatch, ver, MGA_VID_VERSION);
+ mp_msg(MSGT_VO, MSGL_ERR, MSGTR_LIBVO_MGA_mgavidVersionMismatch, ver, MGA_VID_VERSION);
return -1;
}