aboutsummaryrefslogtreecommitdiff
path: root/tsalis
diff options
context:
space:
mode:
Diffstat (limited to 'tsalis')
-rw-r--r--tsalis/README.md1
-rw-r--r--tsalis/src/handler.c10
2 files changed, 0 insertions, 11 deletions
diff --git a/tsalis/README.md b/tsalis/README.md
index abfe188..214e3b9 100644
--- a/tsalis/README.md
+++ b/tsalis/README.md
@@ -60,7 +60,6 @@ control some aspects of the simulation. Parameters here are represented by
|s |--- |--- |Save simulation. |
|r*XX* |name |--- |Rename simulation (will be automatically saved to this name on exit). |
|a*XX* |interval |--- |Set simulation's auto-save interval. |
-|? |--- |--- |Fill memory with random data. |
### Legend
In WORLD view, as well as in PROCESS view (when gene mode is selected), each
diff --git a/tsalis/src/handler.c b/tsalis/src/handler.c
index a0730ad..21aa706 100644
--- a/tsalis/src/handler.c
+++ b/tsalis/src/handler.c
@@ -141,12 +141,6 @@ setAutoSave(const char *command)
}
static void
-randomize(void)
-{
- se_randomize();
-}
-
-static void
clearConsoleLine(void)
{
move(LINES - 1, 0);
@@ -206,10 +200,6 @@ runConsole(void)
case 'a':
setAutoSave(&command[1]);
break;
-
- case '?':
- randomize();
- break;
}
}