Changed the log message on missing game files from error to info.

This commit is contained in:
Leon Styhre 2023-01-23 18:06:53 +01:00
parent 1e52884abe
commit fd85df2716

View file

@ -471,7 +471,7 @@ loadSystemsReturnCode loadSystemConfigFile()
return INVALID_FILE;
if (SystemData::sSystemVector.size() == 0) {
LOG(LogError) << "No game files were found, make sure that the system directories are "
LOG(LogInfo) << "No game files were found, make sure that the system directories are "
"setup correctly and that the file extensions are supported";
return NO_ROMS;
}