Magic number removal.
This commit is contained in:
parent
9b53140f1c
commit
4ce4de190e
2 changed files with 2 additions and 1 deletions
1
advent.h
1
advent.h
|
@ -34,6 +34,7 @@
|
||||||
#define BATTERYLIFE 2500 // turn limit increment from batteries
|
#define BATTERYLIFE 2500 // turn limit increment from batteries
|
||||||
#define WORD_NOT_FOUND -1 // "Word not found" flag value for the vocab hash functions.
|
#define WORD_NOT_FOUND -1 // "Word not found" flag value for the vocab hash functions.
|
||||||
#define WORD_EMPTY 0 // "Word empty" flag value for the vocab hash functions
|
#define WORD_EMPTY 0 // "Word empty" flag value for the vocab hash functions
|
||||||
|
#define PIT_KILL_PROB 35 // Percentage probability of dying from fall in pit.
|
||||||
#define CARRIED -1 // Player is toting it
|
#define CARRIED -1 // Player is toting it
|
||||||
#define READ_MODE "rb" // b is not needed for POSIX but harmless
|
#define READ_MODE "rb" // b is not needed for POSIX but harmless
|
||||||
#define WRITE_MODE "wb" // b is not needed for POSIX but harmless
|
#define WRITE_MODE "wb" // b is not needed for POSIX but harmless
|
||||||
|
|
2
main.c
2
main.c
|
@ -1069,7 +1069,7 @@ static bool do_move(void)
|
||||||
|
|
||||||
/* The easiest way to get killed is to fall into a pit in
|
/* The easiest way to get killed is to fall into a pit in
|
||||||
* pitch darkness. */
|
* pitch darkness. */
|
||||||
if (!FORCED(game.loc) && DARK(game.loc) && game.wzdark && PCT(35)) { // FIXME: magic number
|
if (!FORCED(game.loc) && DARK(game.loc) && game.wzdark && PCT(PIT_KILL_PROB)) {
|
||||||
rspeak(PIT_FALL);
|
rspeak(PIT_FALL);
|
||||||
game.oldlc2 = game.loc;
|
game.oldlc2 = game.loc;
|
||||||
croak();
|
croak();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue