Arrgh! Revert r9395,r9396,r9397,r9398, all of which I just committed
[sgt/puzzles] / grid.h
diff --git a/grid.h b/grid.h
index 7cf4f59..d1c260e 100644 (file)
--- a/grid.h
+++ b/grid.h
@@ -114,10 +114,10 @@ typedef enum grid_type { GRIDGEN_LIST(ENUM) GRID_TYPE_MAX } grid_type;
 
 /* Free directly after use if non-NULL. Will never contain an underscore
  * (so clients can safely use that as a separator). */
-char *grid_new_desc(grid_type type, int width, int height, int dual, random_state *rs);
-char *grid_validate_desc(grid_type type, int width, int height, int dual, char *desc);
+char *grid_new_desc(grid_type type, int width, int height, random_state *rs);
+char *grid_validate_desc(grid_type type, int width, int height, char *desc);
 
-grid *grid_new(grid_type type, int width, int height, int dual, char *desc);
+grid *grid_new(grid_type type, int width, int height, char *desc);
 
 void grid_free(grid *g);