mirror of
git://git.tartarus.org/simon/puzzles.git
synced 2025-04-21 08:01:30 -07:00
Visual C points out a couple of typos.
[originally from svn r5661]
This commit is contained in:
4
solo.c
4
solo.c
@ -221,8 +221,8 @@ static game_params *custom_params(config_item *cfg)
|
|||||||
{
|
{
|
||||||
game_params *ret = snew(game_params);
|
game_params *ret = snew(game_params);
|
||||||
|
|
||||||
ret->c = atof(cfg[0].sval);
|
ret->c = atoi(cfg[0].sval);
|
||||||
ret->r = atof(cfg[1].sval);
|
ret->r = atoi(cfg[1].sval);
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user