summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/notes.h
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2012-05-25 23:39:48 +0200
committerAdam Borowski <kilobyte@angband.pl>2012-05-26 00:23:02 +0200
commit2ea2ce9d9897afa31420d5b998d1162828d0ee2e (patch)
tree54afd85220047ecf5aa67b19ad52aedf6b2ac252 /crawl-ref/source/notes.h
parent6de4c69b049eb22ebba4eaf455e94ac9671b7f22 (diff)
downloadcrawl-ref-2ea2ce9d9897afa31420d5b998d1162828d0ee2e.tar.gz
crawl-ref-2ea2ce9d9897afa31420d5b998d1162828d0ee2e.zip
Kill some longs.
In portable code, basically every use of long or %ld/%lu/%lx is a bug. A legitimate use in Crawl is the bit array: storing it in-memory should be preferably done a word at a time.
Diffstat (limited to 'crawl-ref/source/notes.h')
-rw-r--r--crawl-ref/source/notes.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/notes.h b/crawl-ref/source/notes.h
index 630472b468..15173d7f11 100644
--- a/crawl-ref/source/notes.h
+++ b/crawl-ref/source/notes.h
@@ -67,7 +67,7 @@ struct Note
NOTE_TYPES type;
int first, second;
- long turn;
+ int turn;
unsigned short packed_place;
std::string name;