mirror of
git://git.tartarus.org/simon/puzzles.git
synced 2025-04-21 08:01:30 -07:00
Singles: fix spelling in a validate_params error.
'height', not 'neight'. Apparently has been misspelled since the puzzle was first committed. I suppose they look similar enough that it never caused a problem.
This commit is contained in:
@ -258,7 +258,7 @@ static game_params *custom_params(const config_item *cfg)
|
||||
static const char *validate_params(const game_params *params, bool full)
|
||||
{
|
||||
if (params->w < 2 || params->h < 2)
|
||||
return "Width and neight must be at least two";
|
||||
return "Width and height must be at least two";
|
||||
if (params->w > 10+26+26 || params->h > 10+26+26)
|
||||
return "Puzzle is too large";
|
||||
if (full) {
|
||||
|
Reference in New Issue
Block a user