back into test mode

Post-release, reset to BETA status to indicate development since
there's no ALPHA.  And use BETA to enable the latent RNG checks.
This commit is contained in:
nethack.rankin
2003-12-13 15:01:49 +00:00
parent 41d3ad8c4e
commit a4a80fdbca
2 changed files with 7 additions and 3 deletions

View File

@@ -1,4 +1,4 @@
/* SCCS Id: @(#)global.h 3.4 2003/02/19 */
/* SCCS Id: @(#)global.h 3.4 2003/12/13 */
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/* NetHack may be freely redistributed. See license for details. */
@@ -8,7 +8,7 @@
#include <stdio.h>
/* #define BETA */ /* if a beta-test copy [MRS] */
#define BETA /* development or beta testing [MRS] */
/*
* Files expected to exist in the playground directory.

View File

@@ -1,8 +1,12 @@
/* SCCS Id: @(#)rnd.c 3.4 1996/02/07 */
/* SCCS Id: @(#)rnd.c 3.4 2003/12/13 */
/* NetHack may be freely redistributed. See license for details. */
#include "hack.h"
#if defined(BETA) && !defined(DEBUG) && !defined(NODEBUG)
#define DEBUG
#endif
/* "Rand()"s definition is determined by [OS]conf.h */
#if defined(LINT) && defined(UNIX) /* rand() is long... */
extern int NDECL(rand);