diff options
author | megamage <none@none> | 2009-01-06 13:49:01 -0600 |
---|---|---|
committer | megamage <none@none> | 2009-01-06 13:49:01 -0600 |
commit | 8b876b08173f92062af449bccfb430b2b2f28bac (patch) | |
tree | 0759f2f4f1759afa65cf72e333218c70753c55f8 /src/game/AccountMgr.cpp | |
parent | 3311f1ea0ecb6f578167b5791b106febbafd2efa (diff) |
*Mangos [7037] Avoid unneeded #ifdef. By VladimirMangos.
*Mangos [7038] Fixing known taxi node save in 3.0.3. Cleanup code. By VladimirMangos.
--HG--
branch : trunk
Diffstat (limited to 'src/game/AccountMgr.cpp')
-rw-r--r-- | src/game/AccountMgr.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/game/AccountMgr.cpp b/src/game/AccountMgr.cpp index adf47f8acab..fd112e6c18e 100644 --- a/src/game/AccountMgr.cpp +++ b/src/game/AccountMgr.cpp @@ -25,11 +25,7 @@ #include "Policies/SingletonImp.h" #include "Util.h" -#ifdef DO_POSTGRESQL -extern DatabasePostgre LoginDatabase; -#else -extern DatabaseMysql LoginDatabase; -#endif +extern DatabaseType LoginDatabase; INSTANTIATE_SINGLETON_1(AccountMgr); |