diff options
| author | Simon Tatham <anakin@pobox.com> | 2004-05-02 10:43:46 +0000 |
|---|---|---|
| committer | Simon Tatham <anakin@pobox.com> | 2004-05-02 10:43:46 +0000 |
| commit | ee171498221e701d446fd1bf18c5e1c5771ef128 (patch) | |
| tree | c82ab56dfb47a40cf3f5f7cf6ebdb87257ab9d76 /cube.c | |
| parent | 44ff00665b271ffc789d750d8ad2e5cf25e5327d (diff) | |
| download | puzzles-ee171498221e701d446fd1bf18c5e1c5771ef128.zip puzzles-ee171498221e701d446fd1bf18c5e1c5771ef128.tar.gz puzzles-ee171498221e701d446fd1bf18c5e1c5771ef128.tar.bz2 puzzles-ee171498221e701d446fd1bf18c5e1c5771ef128.tar.xz | |
`BOOLEAN' is a term already used by Win32. Bah. Change terminology.
[originally from svn r4183]
Diffstat (limited to 'cube.c')
| -rw-r--r-- | cube.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -450,24 +450,24 @@ config_item *game_configure(game_params *params) char buf[80]; ret[0].name = "Type of solid"; - ret[0].type = CHOICES; + ret[0].type = C_CHOICES; ret[0].sval = ":Tetrahedron:Cube:Octahedron:Icosahedron"; ret[0].ival = params->solid; ret[1].name = "Width / top"; - ret[1].type = STRING; + ret[1].type = C_STRING; sprintf(buf, "%d", params->d1); ret[1].sval = dupstr(buf); ret[1].ival = 0; ret[2].name = "Height / bottom"; - ret[2].type = STRING; + ret[2].type = C_STRING; sprintf(buf, "%d", params->d2); ret[2].sval = dupstr(buf); ret[2].ival = 0; ret[3].name = NULL; - ret[3].type = ENDCFG; + ret[3].type = C_END; ret[3].sval = NULL; ret[3].ival = 0; |