summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/arena.cc
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2013-11-03 13:01:25 +0100
committerAdam Borowski <kilobyte@angband.pl>2013-11-03 13:01:25 +0100
commit7047b33b2768a838b2cea28f8738936c08f1d406 (patch)
tree27a0d4712509390031464a0d05d8eacdd53d2096 /crawl-ref/source/arena.cc
parente06bfaaf8641758a91ec5978d28a55b4697be788 (diff)
downloadcrawl-ref-7047b33b2768a838b2cea28f8738936c08f1d406.tar.gz
crawl-ref-7047b33b2768a838b2cea28f8738936c08f1d406.zip
Shorten branch enums.
Seriously, even preparing this commit gave me a pain in the triangle between the thumb and index finger's bases and the wrist.
Diffstat (limited to 'crawl-ref/source/arena.cc')
-rw-r--r--crawl-ref/source/arena.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/arena.cc b/crawl-ref/source/arena.cc
index 767dbb800b..647af17554 100644
--- a/crawl-ref/source/arena.cc
+++ b/crawl-ref/source/arena.cc
@@ -133,7 +133,7 @@ namespace arena
static uint32_t cycle_random_pos = 0;
static FILE *file = NULL;
- static level_id place(BRANCH_MAIN_DUNGEON, 20);
+ static level_id place(BRANCH_DUNGEON, 20);
static void adjust_spells(monster* mons, bool no_summons, bool no_animate)
{
@@ -919,7 +919,7 @@ namespace arena
uniques_list.clear();
memset(banned_glyphs, 0, sizeof(banned_glyphs));
arena_type = "";
- place = level_id(BRANCH_MAIN_DUNGEON, 20);
+ place = level_id(BRANCH_DUNGEON, 20);
// [ds] Turning off view_lock crashes arena.
Options.view_lock_x = Options.view_lock_y = true;