summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/skills2.h
diff options
context:
space:
mode:
authorRaphael Langella <raphael.langella@gmail.com>2011-09-20 09:54:12 +0000
committerRaphael Langella <raphael.langella@gmail.com>2011-09-21 07:14:05 +0200
commit7ca268bd88afaf7bd9b38dff39299a4f220f6ce3 (patch)
tree4fd7a8ed61681aa49fe471f183f0ef11601a6996 /crawl-ref/source/skills2.h
parentd7df244994ed501512320d9208446880a2fac5f0 (diff)
downloadcrawl-ref-7ca268bd88afaf7bd9b38dff39299a4f220f6ce3.tar.gz
crawl-ref-7ca268bd88afaf7bd9b38dff39299a4f220f6ce3.zip
Add a decimal to the skill level display.
Diffstat (limited to 'crawl-ref/source/skills2.h')
-rw-r--r--crawl-ref/source/skills2.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/crawl-ref/source/skills2.h b/crawl-ref/source/skills2.h
index df20791abe..dbf640db5d 100644
--- a/crawl-ref/source/skills2.h
+++ b/crawl-ref/source/skills2.h
@@ -15,7 +15,8 @@ const int MAX_SKILL_ORDER = 100;
struct skill_state
{
FixedVector<uint8_t, NUM_SKILLS> skills;
- FixedVector<uint8_t, NUM_SKILLS> changed_skills;
+ FixedVector<uint8_t, NUM_SKILLS> real_skills; // Those two are
+ FixedVector<uint8_t, NUM_SKILLS> changed_skills; // scaled by 10.
FixedVector<int8_t, NUM_SKILLS> train;
FixedVector<unsigned int, NUM_SKILLS> training;
FixedVector<unsigned int, NUM_SKILLS> skill_points;