| 2077 | } |
| 2078 | |
| 2079 | std::string Pcsx2Config::FullpathToBios() const |
| 2080 | { |
| 2081 | std::string ret; |
| 2082 | if (!BaseFilenames.Bios.empty()) |
| 2083 | ret = Path::Combine(EmuFolders::Bios, BaseFilenames.Bios); |
| 2084 | return ret; |
| 2085 | } |
| 2086 | |
| 2087 | std::string Pcsx2Config::FullpathToMcd(uint slot) const |
| 2088 | { |
no test coverage detected