summaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c
index 6651ff3..4f7ba7f 100644
--- a/src/main.c
+++ b/src/main.c
@@ -22,6 +22,7 @@ int new32(int i, int x, int y);
int new32v2(int i, int x, int y);
int new32v3(int i, int x, int y);
int mastur(int i, int x, int y);
+int mastur2(int i, int x, int y);
void bigtab_init(void);
int bigtab(int i, int x, int y);
@@ -42,7 +43,8 @@ static struct solfunc solfuncs[ ] = {
{"new32", new32},
{"new32v2", new32v2},
{"new32v3", new32v3},
- {"mastur", mastur}
+ {"mastur", mastur},
+ {"mastur2", mastur2}
};
#define PASSES 5