From 54e954efcc68b243e94cd3288f99a3576aa2f506 Mon Sep 17 00:00:00 2001 From: emb <> Date: Fri, 20 Feb 2015 12:44:42 -0600 Subject: [PATCH] Updated database name to match new db implementation. --- RetroFE/Source/RetroFE.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RetroFE/Source/RetroFE.cpp b/RetroFE/Source/RetroFE.cpp index 233a07b..0826356 100644 --- a/RetroFE/Source/RetroFE.cpp +++ b/RetroFE/Source/RetroFE.cpp @@ -78,7 +78,7 @@ int RetroFE::Initialize(void *context) if(!instance->Input.Initialize()) return -1; - instance->Db = new DB(Configuration::GetAbsolutePath() + "/cache.db"); + instance->Db = new DB(Configuration::GetAbsolutePath() + "/Meta.db"); if(!instance->Db->Initialize()) {