Browse Source

Added an initial loading message to YAML parsing

Lemongrass3110 4 years ago
parent
commit
579dc7b3a1
1 changed files with 1 additions and 0 deletions
  1. 1 0
      src/common/database.cpp

+ 1 - 0
src/common/database.cpp

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