Renamed instance_variables to global_variables and iv to g.

This commit is contained in:
Bart House
2018-11-23 09:27:10 -08:00
parent 14bf74c862
commit f9a0db6c44
21 changed files with 115 additions and 115 deletions

View File

@@ -97,7 +97,7 @@ char *argv[];
nethack_enter(argc, argv);
instance_variable_init();
instance_globals_init();
sys_early_init();
#if defined(WIN32) && defined(TTY_GRAPHICS)

View File

@@ -238,7 +238,7 @@ unsigned x;
char *
initstate(seed, arg_state, n)
unsigned seed; /* seed for R. N. G. */
unsigned seed; /* seed for RNG */
char *arg_state; /* pointer to state array */
int n; /* # bytes of state info */
{