chiark
/
gitweb
/
~ian
/
sgt-puzzles.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0c55b7e
)
Visual C points out a couple of typos.
author
Simon Tatham
<anakin@pobox.com>
Sat, 23 Apr 2005 16:41:35 +0000
(16:41 +0000)
committer
Simon Tatham
<anakin@pobox.com>
Sat, 23 Apr 2005 16:41:35 +0000
(16:41 +0000)
[originally from svn r5661]
solo.c
patch
|
blob
|
history
diff --git
a/solo.c
b/solo.c
index dfeeca57284349d2c70fa23d53cef927d1a6ffc7..35a081f4b27f689b01ddf09ed91f9ed0d1446d02 100644
(file)
--- a/
solo.c
+++ b/
solo.c
@@
-221,8
+221,8
@@
static game_params *custom_params(config_item *cfg)
{
game_params *ret = snew(game_params);
- ret->c = ato
f
(cfg[0].sval);
- ret->r = ato
f
(cfg[1].sval);
+ ret->c = ato
i
(cfg[0].sval);
+ ret->r = ato
i
(cfg[1].sval);
return ret;
}