From a24909471fc6ac7b23b134e0526ff7af0e224edd Mon Sep 17 00:00:00 2001 From: Adam Honse Date: Thu, 5 Nov 2020 00:12:40 -0600 Subject: [PATCH] Fix Profile list loading --- ProfileManager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ProfileManager.cpp b/ProfileManager.cpp index 184ddc0c8..a6770b33a 100644 --- a/ProfileManager.cpp +++ b/ProfileManager.cpp @@ -324,7 +324,7 @@ void ProfileManager::UpdateProfileList() /*---------------------------------------------------------*\ | Open input file in binary mode | \*---------------------------------------------------------*/ - std::ifstream profile_file(filename, std::ios::in | std::ios::binary); + std::ifstream profile_file(configuration_directory + filename, std::ios::in | std::ios::binary); /*---------------------------------------------------------*\ | Read and verify file header |