summaryrefslogtreecommitdiffstats
path: root/libvo/vo_sdl.c
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-04-28 23:06:42 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-04-28 23:06:42 +0000
commit3f62423f420cac789a8a8753511eab64225f5dfa (patch)
tree8a66427c4510b36ac90db4370bbd81e294bdb764 /libvo/vo_sdl.c
parent5f7d83a8ee707ddb2e6b2d62164dab3a8194f5e3 (diff)
downloadmpv-3f62423f420cac789a8a8753511eab64225f5dfa.tar.bz2
mpv-3f62423f420cac789a8a8753511eab64225f5dfa.tar.xz
Rename some misspelled and misnamed messages.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@18336 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo/vo_sdl.c')
-rw-r--r--libvo/vo_sdl.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libvo/vo_sdl.c b/libvo/vo_sdl.c
index fcce0be9ff..b68262ffaa 100644
--- a/libvo/vo_sdl.c
+++ b/libvo/vo_sdl.c
@@ -1638,7 +1638,8 @@ static int preinit(const char *arg)
/* initialize the SDL Video system */
if (!SDL_WasInit(SDL_INIT_VIDEO)) {
if (SDL_Init (SDL_INIT_VIDEO|SDL_INIT_NOPARACHUTE)) {
- mp_msg(MSGT_VO,MSGL_ERR, MSGTR_LIBVO_SDL_InitializingOfSDLFailed, SDL_GetError());
+ mp_msg(MSGT_VO,MSGL_ERR, MSGTR_LIBVO_SDL_InitializationFailed, SDL_GetError());
+
return -1;
}
}