From 479fdb3dcd47fb8d951dc9aa9f558878d880ca04 Mon Sep 17 00:00:00 2001 From: Tannin Date: Tue, 9 Dec 2014 18:34:09 +0100 Subject: removed use of ModInfo::internalName --- src/profile.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/profile.cpp') diff --git a/src/profile.cpp b/src/profile.cpp index 12992291..fda61c4d 100644 --- a/src/profile.cpp +++ b/src/profile.cpp @@ -388,7 +388,7 @@ std::vector > Profile::getActiveMods() iter != m_ModIndexByPriority.end(); ++iter) { if ((*iter != UINT_MAX) && m_ModStatus[*iter].m_Enabled) { ModInfo::Ptr modInfo = ModInfo::getByIndex(*iter); - result.push_back(std::make_tuple(modInfo->internalName(), modInfo->absolutePath(), m_ModStatus[*iter].m_Priority)); + result.push_back(std::make_tuple(modInfo->name(), modInfo->absolutePath(), m_ModStatus[*iter].m_Priority)); } } -- cgit v1.3.1