Mercurial > hg > early-roguelike
comparison urogue/state.c @ 259:096d3cfd9afd
UltraRogue: add the -n option.
author | John "Elwin" Edwards |
---|---|
date | Thu, 09 Feb 2017 16:29:45 -0500 |
parents | 2908dc47f9e2 |
children | b80e1bf4eaec |
comparison
equal
deleted
inserted
replaced
258:2908dc47f9e2 | 259:096d3cfd9afd |
---|---|
136 int running = FALSE; | 136 int running = FALSE; |
137 int fighting = FALSE; | 137 int fighting = FALSE; |
138 int wizard = FALSE; | 138 int wizard = FALSE; |
139 int wiz_verbose = TRUE; | 139 int wiz_verbose = TRUE; |
140 int moving = FALSE; | 140 int moving = FALSE; |
141 int use_savedir = FALSE; | |
141 coord delta; /* Change indicated to get_dir() */ | 142 coord delta; /* Change indicated to get_dir() */ |
142 LEVTYPE levtype; /* type of level i'm on */ | 143 LEVTYPE levtype; /* type of level i'm on */ |
143 long purse = 0; | 144 long purse = 0; |
144 unsigned long total = 0; | 145 unsigned long total = 0; |
145 | 146 |