summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/newgame.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/newgame.cc')
-rw-r--r--crawl-ref/source/newgame.cc7
1 files changed, 1 insertions, 6 deletions
diff --git a/crawl-ref/source/newgame.cc b/crawl-ref/source/newgame.cc
index 6cbc55326d..d6e6d578db 100644
--- a/crawl-ref/source/newgame.cc
+++ b/crawl-ref/source/newgame.cc
@@ -19,11 +19,6 @@
#include <time.h>
#include <algorithm>
-#ifdef TARGET_OS_DOS
-#include <conio.h>
-#include <dos.h>
-#endif
-
#ifdef UNIX
#include <sys/types.h>
#include <fcntl.h>
@@ -2378,7 +2373,7 @@ static void _give_wanderer_spell(skill_type skill)
spell_type spell = SPELL_NO_SPELL;
// Doing a rejection loop for this because I am lazy.
- while (skill == SK_SPELLCASTING || skill == SK_DIVINATIONS)
+ while (skill == SK_SPELLCASTING)
{
int value = SK_POISON_MAGIC-SK_CONJURATIONS + 1;
skill = skill_type(SK_CONJURATIONS + random2(value));