From 3e790da2ce4806e74dd5b1bc59334aac654e82c5 Mon Sep 17 00:00:00 2001 From: pauldubois Date: Thu, 20 Mar 2008 08:44:29 +0000 Subject: 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 --- crawl-ref/source/database.cc | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'crawl-ref/source/database.cc') 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]; -- cgit v1.2.3-54-g00ecf