summaryrefslogtreecommitdiff
path: root/src/gen_evol.c
diff options
context:
space:
mode:
authorBardur Arantsson <bardur@scientician.net>2011-02-20 19:54:40 +0100
committerBardur Arantsson <bardur@scientician.net>2011-02-20 20:56:41 +0100
commit5fbe06613a8a9e5d8731a832ddff0e9bdce112bb (patch)
tree4ab5267304509feed1bbcf4ad265cd8597c64fce /src/gen_evol.c
parent420428c53fe83064331ac2e06297c8a93abc93cf (diff)
Remove redefinition of "bool" for C++ friendliness.
Diffstat (limited to 'src/gen_evol.c')
-rw-r--r--src/gen_evol.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gen_evol.c b/src/gen_evol.c
index 8779f22f..85bad1a3 100644
--- a/src/gen_evol.c
+++ b/src/gen_evol.c
@@ -16,7 +16,7 @@
/*
* Generate a game of life level :) and make it evolve
*/
-void evolve_level(bool noise)
+void evolve_level(bool_ noise)
{
int i, j;
@@ -130,7 +130,7 @@ void evolve_level(bool noise)
}
-bool level_generate_life(cptr name)
+bool_ level_generate_life(cptr name)
{
int i, j;