summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/database.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/database.cc')
-rw-r--r--crawl-ref/source/database.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/database.cc b/crawl-ref/source/database.cc
index 8417b6e689..af43a29c76 100644
--- a/crawl-ref/source/database.cc
+++ b/crawl-ref/source/database.cc
@@ -182,13 +182,13 @@ void TextDB::_regenerate_db()
void databaseSystemInit()
{
- for (unsigned int i = 0; i < ARRAYSIZE(AllDBs); i++)
+ for (unsigned int i = 0; i < ARRAYSZ(AllDBs); i++)
AllDBs[i].init();
}
void databaseSystemShutdown()
{
- for (unsigned int i = 0; i < ARRAYSIZE(AllDBs); i++)
+ for (unsigned int i = 0; i < ARRAYSZ(AllDBs); i++)
AllDBs[i].shutdown();
}