Fix Profile list loading

This commit is contained in:
Adam Honse 2020-11-05 00:12:40 -06:00
parent 49365b3d98
commit a24909471f

View file

@ -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 |