summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/hiscores.h
diff options
context:
space:
mode:
authordshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-05-09 14:55:40 +0000
committerdshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-05-09 14:55:40 +0000
commit523f4a0a5478fe3146086a980afa5a8f8ff3d052 (patch)
tree8edcb3caf9df66bc6beec9558dba60da3b9b5a4f /crawl-ref/source/hiscores.h
parent7dfc7ccd3de424f1aab582578aabe0cdfa2f9504 (diff)
downloadcrawl-ref-523f4a0a5478fe3146086a980afa5a8f8ff3d052.tar.gz
crawl-ref-523f4a0a5478fe3146086a980afa5a8f8ff3d052.zip
Interlevel travel tweaks:
* ^P at branch prompt selects the parent branch of the branch you're in (or the main dungeon if you're in the main dungeon). * The depth prompt is always shown, even for single-level branches. This may need to be rolled back if it's too annoying. * At the depth prompt, you can use < to go one level above the default (navigating up into the parent branch if necessary) and > to go one level below the default (never navigating into deeper branches). - or p or ^P will change the default to the level closest to the current default in the parent branch. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@1437 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/hiscores.h')
-rw-r--r--crawl-ref/source/hiscores.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/hiscores.h b/crawl-ref/source/hiscores.h
index 806265e928..88fac529d0 100644
--- a/crawl-ref/source/hiscores.h
+++ b/crawl-ref/source/hiscores.h
@@ -100,8 +100,8 @@ public:
std::string death_source_name; // overrides death_source
std::string auxkilldata; // weapon wielded, spell cast, etc
char dlvl; // dungeon level (relative)
- char level_type; // what kind of level died on..
- char branch; // dungeon branch
+ level_area_type level_type; // what kind of level died on..
+ branch_type branch; // dungeon branch
int final_hp; // actual current HPs (probably <= 0)
int final_max_hp; // net HPs after rot
int final_max_max_hp; // gross HPs before rot
@@ -181,7 +181,7 @@ private:
void init_from(const scorefile_entry &other);
- int kludge_branch(int branch_01) const;
+ branch_type kludge_branch(int branch_01) const;
};
#endif // HISCORES_H