Mercurial > hg > early-roguelike
diff xrogue/daemons.c @ 236:7c1cb43f346e
XRogue: get rid of VOID as an alias for long.
Maybe some compilers in 1986 didn't handle void pointers well, but they
are no longer a concern.
author | John "Elwin" Edwards |
---|---|
date | Mon, 07 Mar 2016 20:44:01 -0500 |
parents | b67b99f6c92b |
children | 0250220d8cdd |
line wrap: on
line diff
--- a/xrogue/daemons.c Mon Mar 07 19:26:08 2016 -0500 +++ b/xrogue/daemons.c Mon Mar 07 20:44:01 2016 -0500 @@ -114,7 +114,7 @@ void swander(void) { - start_daemon(rollwand, (VOID *)NULL, BEFORE); + start_daemon(rollwand, NULL, BEFORE); } /* @@ -137,7 +137,7 @@ if (levtype != POSTLEV) wanderer(); kill_daemon(rollwand); - fuse(swander, (VOID *)NULL, WANDERTIME, BEFORE); + fuse(swander, NULL, WANDERTIME, BEFORE); } between = 0; } @@ -612,7 +612,7 @@ return; if (tobj->o_charges < QUILLCHARGES) tobj->o_charges++; - fuse (quill_charge, (VOID *)NULL, player.t_ctype == C_MAGICIAN ? 4 : 8, AFTER); + fuse (quill_charge, NULL, player.t_ctype == C_MAGICIAN ? 4 : 8, AFTER); } /* @@ -719,7 +719,7 @@ time = SPELLTIME - max(17-pstats.s_intel, 0); time = max(time, 5); if (spell_power > 0) spell_power--; - fuse(spell_recovery, (VOID *)NULL, time, AFTER); + fuse(spell_recovery, NULL, time, AFTER); } /* @@ -734,7 +734,7 @@ time = SPELLTIME - max(17-pstats.s_wisdom, 0); time = max(time, 5); if (pray_time > 0) pray_time--; - fuse(prayer_recovery, (VOID *)NULL, time, AFTER); + fuse(prayer_recovery, NULL, time, AFTER); } /* @@ -749,6 +749,6 @@ time = SPELLTIME - max(17-pstats.s_wisdom, 0); time = max(time, 5); if (chant_time > 0) chant_time--; - fuse(chant_recovery, (VOID *)NULL, time, AFTER); + fuse(chant_recovery, NULL, time, AFTER); }