diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2004-04-26 17:50:06 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2004-04-26 17:50:06 +0000 |
commit | e5568601c73d854a62c8de99a9df01f56dcfaf86 (patch) | |
tree | df37c01b56eca1fee6724948b4c1643e15b00a72 /src/video_out/video_out_sdl.c | |
parent | a8f7b05b5a973374e539b1b263c88b43f270f4fb (diff) | |
download | xine-lib-e5568601c73d854a62c8de99a9df01f56dcfaf86.tar.gz xine-lib-e5568601c73d854a62c8de99a9df01f56dcfaf86.tar.bz2 |
help strings added for all remaining config entries (so I hope)
please everybody watch out for spelling (and other) errors
CVS patchset: 6442
CVS date: 2004/04/26 17:50:06
Diffstat (limited to 'src/video_out/video_out_sdl.c')
-rw-r--r-- | src/video_out/video_out_sdl.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/video_out/video_out_sdl.c b/src/video_out/video_out_sdl.c index 5e99b8f8d..3cede2844 100644 --- a/src/video_out/video_out_sdl.c +++ b/src/video_out/video_out_sdl.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: video_out_sdl.c,v 1.36 2003/12/29 18:07:49 miguelfreitas Exp $ + * $Id: video_out_sdl.c,v 1.37 2004/04/26 17:50:10 mroi Exp $ * * video_out_sdl.c, Simple DirectMedia Layer * @@ -469,8 +469,11 @@ static vo_driver_t *open_plugin (video_driver_class_t *class_gen, const void *vi this->sdlflags = SDL_HWSURFACE | SDL_RESIZABLE; this->hw_accel = class->config->register_bool(class->config, - "video.sdl_hw_accel", 1, "use hardware acceleration if available", - NULL, 10, NULL, this); + "video.sdl_hw_accel", 1, + _("use hardware acceleration if available"), + _("When your system supports it, hardware acceleration provided by your " + "graphics hardware will be used. This might not work, so you can disable it, " + "if things go wrong."), 10, NULL, NULL); xine_setenv("SDL_VIDEO_YUV_HWACCEL", (this->hw_accel) ? "1" : "0", 1); xine_setenv("SDL_VIDEO_X11_NODIRECTCOLOR", "1", 1); |