aboutsummaryrefslogtreecommitdiff
path: root/src/shared/Database/DBCStore.h
diff options
context:
space:
mode:
authorQAston <none@none>2009-08-18 20:17:06 +0200
committerQAston <none@none>2009-08-18 20:17:06 +0200
commit5ffa85c858fb721fb5d663431712d173d6b62a15 (patch)
tree2344baec6dfc3bf569b9318d6b278ae02d3c5b9a /src/shared/Database/DBCStore.h
parentd3d2eb91bbac388f9ffc1e89147c4129e7bcf9af (diff)
*Fix server startup error from 5184.
--HG-- branch : trunk
Diffstat (limited to 'src/shared/Database/DBCStore.h')
-rw-r--r--src/shared/Database/DBCStore.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/shared/Database/DBCStore.h b/src/shared/Database/DBCStore.h
index 2906a93edbc..523d5c5a0b3 100644
--- a/src/shared/Database/DBCStore.h
+++ b/src/shared/Database/DBCStore.h
@@ -34,11 +34,11 @@ class DBCStorage
char const* GetFormat() const { return fmt; }
uint32 GetFieldCount() const { return fieldCount; }
- bool Load(char const* fn, uint32 customEntriesCount = 0)
+ bool Load(char const* fn)
{
DBCFileLoader dbc;
// Check if load was sucessful, only then continue
- if(!dbc.Load(fn, fmt, customEntriesCount))
+ if(!dbc.Load(fn, fmt))
return false;
fieldCount = dbc.GetCols();