summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/database.cc
diff options
context:
space:
mode:
authorpauldubois <pauldubois@c06c8d41-db1a-0410-9941-cceddc491573>2008-03-20 08:44:29 +0000
committerpauldubois <pauldubois@c06c8d41-db1a-0410-9941-cceddc491573>2008-03-20 08:44:29 +0000
commit3e790da2ce4806e74dd5b1bc59334aac654e82c5 (patch)
tree4c2216fd0bdf04ed4d15a894bc532d13b73a12b5 /crawl-ref/source/database.cc
parentce5e0d9e5fe3a459cb3e5f199a9889af3b378c90 (diff)
downloadcrawl-ref-3e790da2ce4806e74dd5b1bc59334aac654e82c5.tar.gz
crawl-ref-3e790da2ce4806e74dd5b1bc59334aac654e82c5.zip
Fix probable 64-bit portability problem.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@3742 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/database.cc')
-rw-r--r--crawl-ref/source/database.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/crawl-ref/source/database.cc b/crawl-ref/source/database.cc
index beafcdfbdd..d84ddc8000 100644
--- a/crawl-ref/source/database.cc
+++ b/crawl-ref/source/database.cc
@@ -65,30 +65,30 @@ static TextDB AllDBs[] =
"descript/spells.txt",
"descript/gods.txt",
"descript/branches.txt",
- 0),
+ NULL),
TextDB( "db/randart",
"database/randname.txt",
"database/rand_wpn.txt", // mostly weapons
"database/rand_arm.txt", // mostly armour
"database/rand_all.txt", // jewellery and general
- 0),
+ NULL),
TextDB( "db/speak",
"database/monspeak.txt", // monster speech
"database/wpnnoise.txt", // noisy weapon speech
"database/insult.txt", // imp/demon taunts
"database/godspeak.txt", // god speech
- 0),
+ NULL),
TextDB( "db/shout",
"database/shout.txt",
"database/insult.txt", // imp/demon taunts, again
- 0),
+ NULL),
TextDB( "db/help",
"database/help.txt",
- 0),
+ NULL),
};
static TextDB& DescriptionDB = AllDBs[0];