Added an initial loading message to YAML parsing

This commit is contained in:
Lemongrass3110 2020-10-24 22:49:19 +02:00
parent 4786d76ef7
commit 579dc7b3a1

View File

@ -95,6 +95,7 @@ bool YamlDatabase::load(const std::string& path) {
YAML::Node rootNode;
try {
ShowStatus( "Loading '" CL_WHITE "%s" CL_RESET "'..." CL_CLL "\r", path.c_str() );
rootNode = YAML::LoadFile(path);
}
catch(YAML::Exception &e) {