diff options
| author | Simon Tatham <anakin@pobox.com> | 2005-08-06 10:38:34 +0000 |
|---|---|---|
| committer | Simon Tatham <anakin@pobox.com> | 2005-08-06 10:38:34 +0000 |
| commit | c3d1982dcb2de62ea2eb79e01eda8106d3335042 (patch) | |
| tree | d6d78a6f7bb2f76b6cca1085cbf8638cccfd13c0 /slant.c | |
| parent | 98a9f06a6704192c983f1d40100dd41714331bf2 (diff) | |
| download | puzzles-c3d1982dcb2de62ea2eb79e01eda8106d3335042.zip puzzles-c3d1982dcb2de62ea2eb79e01eda8106d3335042.tar.gz puzzles-c3d1982dcb2de62ea2eb79e01eda8106d3335042.tar.bz2 puzzles-c3d1982dcb2de62ea2eb79e01eda8106d3335042.tar.xz | |
Document hard mode in Slant, and also fix an obvious memory
management error in game_configure().
[originally from svn r6169]
Diffstat (limited to 'slant.c')
| -rw-r--r-- | slant.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -171,7 +171,7 @@ static config_item *game_configure(game_params *params) config_item *ret; char buf[80]; - ret = snewn(2, config_item); + ret = snewn(4, config_item); ret[0].name = "Width"; ret[0].type = C_STRING; |