summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/wiz-fsim.cc
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2012-07-26 14:22:38 +0200
committerAdam Borowski <kilobyte@angband.pl>2012-07-26 14:22:38 +0200
commit705162b1193ce341608cbbe7017119e366760a1a (patch)
tree032e8af6f1479313338a0c8aae45f43fc9181215 /crawl-ref/source/wiz-fsim.cc
parent44f40dd5f9fe2e775a80616ca2f03e375c120bed (diff)
downloadcrawl-ref-705162b1193ce341608cbbe7017119e366760a1a.tar.gz
crawl-ref-705162b1193ce341608cbbe7017119e366760a1a.zip
Rename FixedBitArray to FixedBitVector.
Diffstat (limited to 'crawl-ref/source/wiz-fsim.cc')
-rw-r--r--crawl-ref/source/wiz-fsim.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/wiz-fsim.cc b/crawl-ref/source/wiz-fsim.cc
index 9379a86dc3..5abc307389 100644
--- a/crawl-ref/source/wiz-fsim.cc
+++ b/crawl-ref/source/wiz-fsim.cc
@@ -298,7 +298,7 @@ static fight_data _get_fight_data(monster &mon, int iter_limit, bool defend)
// disable death and delay, but make sure that these values
// get reset when the function call ends
- unwind_var<FixedBitArray<NUM_DISABLEMENTS> > disabilities(crawl_state.disables);
+ unwind_var<FixedBitVector<NUM_DISABLEMENTS> > disabilities(crawl_state.disables);
crawl_state.disables.set(DIS_DEATH);
crawl_state.disables.set(DIS_DELAY);
@@ -597,7 +597,7 @@ void wizard_fight_sim(bool double_scale)
// disable death and delay, but make sure that these values
// get reset when the function call ends
- unwind_var<FixedBitArray<NUM_DISABLEMENTS> > disabilities(crawl_state.disables);
+ unwind_var<FixedBitVector<NUM_DISABLEMENTS> > disabilities(crawl_state.disables);
crawl_state.disables.set(DIS_DEATH);
crawl_state.disables.set(DIS_DELAY);