Log: Restore BIOS Found message

This commit is contained in:
refractionpcsx2 2021-12-16 11:28:49 +00:00
parent d8a9c5b479
commit e58766745c
1 changed files with 2 additions and 0 deletions

View File

@ -119,6 +119,8 @@ static bool LoadBiosVersion(std::FILE* fp, u32& version, std::string& descriptio
version = strtol(vermaj, (char**)NULL, 0) << 8;
version |= strtol(vermin, (char**)NULL, 0);
foundRomVer = true;
Console.WriteLn("Bios Found: %s", description.c_str());
}
if ((rd.fileSize % 0x10) == 0)