summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/defines.h
diff options
context:
space:
mode:
authorRobert Vollmert <rvollmert@gmx.net>2009-11-22 18:19:44 +0100
committerRobert Vollmert <rvollmert@gmx.net>2009-11-22 18:26:09 +0100
commit2734cf27fe02336b6e6f750fe74d631c3508890d (patch)
tree4cad0e8c800cf3861c86f450185bfe7260aa436f /crawl-ref/source/defines.h
parenta0501938d1345ae84343cf2e980e429035f71eee (diff)
downloadcrawl-ref-2734cf27fe02336b6e6f750fe74d631c3508890d.tar.gz
crawl-ref-2734cf27fe02336b6e6f750fe74d631c3508890d.zip
Make experience pool defines unsigned.
Diffstat (limited to 'crawl-ref/source/defines.h')
-rw-r--r--crawl-ref/source/defines.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/defines.h b/crawl-ref/source/defines.h
index 912b2ee1c4..1e978088e8 100644
--- a/crawl-ref/source/defines.h
+++ b/crawl-ref/source/defines.h
@@ -141,9 +141,9 @@ const int ANON_FRIENDLY_MONSTER = -1999;
const int DEBUG_COOKIE = 32767;
const int MAX_SKILL_LEVEL = 27;
-const int MAX_EXP_TOTAL = 8999999;
-const int MAX_EXP_POOL = 20000;
-const int FULL_EXP_POOL = MAX_EXP_POOL;
+const unsigned int MAX_EXP_TOTAL = 8999999;
+const unsigned int MAX_EXP_POOL = 20000;
+const unsigned int FULL_EXP_POOL = MAX_EXP_POOL;
const int MIN_HIT_MISS_PERCENTAGE = 5;