diff srogue/main.c @ 100:1e88eb1942a5

srogue: allow wizard mode to be compiled out.
author John "Elwin" Edwards
date Sat, 31 Aug 2013 14:24:31 -0700
parents 88ab59f06dfc
children 15f8229f38c1
line wrap: on
line diff
--- a/srogue/main.c	Sat Aug 31 09:18:07 2013 -0700
+++ b/srogue/main.c	Sat Aug 31 14:24:31 2013 -0700
@@ -94,6 +94,7 @@
 		exit(0);
 	}
 
+#ifdef WIZARD
 	if (argc >= 2 && author() && strcmp(argv[1],"-a") == 0)
 	{
 		wizard = TRUE;
@@ -112,6 +113,7 @@
 			argc--;
 		}
 	}
+#endif
 	time(&now);
 	lowtime = (int) now;