summaryrefslogtreecommitdiffstats
path: root/libvo/aspect.c
diff options
context:
space:
mode:
Diffstat (limited to 'libvo/aspect.c')
-rw-r--r--libvo/aspect.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/libvo/aspect.c b/libvo/aspect.c
index f69286d00f..44470e16e7 100644
--- a/libvo/aspect.c
+++ b/libvo/aspect.c
@@ -3,6 +3,7 @@
#include "geometry.h"
//#ifndef ASPECT_TEST
#include "mp_msg.h"
+#include "help_mp.h"
//#endif
//#define ASPECT_DEBUG
@@ -103,9 +104,9 @@ void aspect(int *srcw, int *srch, int zoom){
*srcw = tmpw;
}else{
#ifndef ASPECT_TEST
- mp_msg(MSGT_VO,MSGL_WARN,"aspect: Warning: no suitable new res found!\n");
+ mp_msg(MSGT_VO,MSGL_WARN,MSGTR_LIBVO_ASPECT_NoSuitableNewResFound);
#else
- mp_msg(MSGT_VO,MSGL_WARN,"error: no new size found that fits into res!\n");
+ mp_msg(MSGT_VO,MSGL_WARN,MSGTR_LIBVO_ASPECT_NoNewSizeFoundThatFitsIntoRes);
#endif
}
}