From b1a73f913a116a3049f0ef1b918cd3d0273be29a Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Sat, 29 Mar 2008 12:04:21 +0000 Subject: [PATCH] Fix erroneous help strings. --- SConstruct | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SConstruct b/SConstruct index e76fdb6a3da..de9e25feb23 100644 --- a/SConstruct +++ b/SConstruct @@ -31,10 +31,10 @@ opts.Add(BoolOption('python', 'Enable in-game python extensions.', True)) opts.Add(BoolOption('raw_sockets', 'Set to use raw receiving sockets in the multiplayer network layer rather than the SDL_net facilities', False)) opts.Add('server_gid', 'group id of the user who runs wesnothd', "") opts.Add('server_uid', 'user id of the user who runs wesnothd', "") -opts.Add(BoolOption('smallgui', 'Set for GUI reductions for resolutions down to 800x480 (eeePC, Nokia 8x0), resize images before installing', False)) +opts.Add(BoolOption('smallgui', 'Set for GUI reductions for resolutions down to 800x480 (eeePC, Nokia 8x0), images normal size', False)) opts.Add(BoolOption('static', 'Set to enable static building of Wesnoth', False)) opts.Add(BoolOption('strict', 'Set to strict compilation', False)) -opts.Add(BoolOption('tinygui', 'Set for GUI reductions for resolutions down to 320x240 (PDAs), images normal size', False)) +opts.Add(BoolOption('tinygui', 'Set for GUI reductions for resolutions down to 320x240 (PDAs), resize images before installing', False)) opts.Add(BoolOption('verbose', 'Emit progress messages during data installation.', True)) # FIXME: These are not yet implemented