CDUtils: Remove unused parameter in IsCDROM()

It was only ever passed nullptr, and even then, nothing was actually
done with the parameter.
This commit is contained in:
Lioncash 2018-05-27 18:39:54 -04:00
parent 470b09fe9d
commit c056708dc8
1 changed files with 2 additions and 2 deletions

View File

@ -160,7 +160,7 @@ static bool IsDevice(const std::string& source_name)
}
// Check a device to see if it is a DVD/CD-ROM drive
static bool IsCDROM(const std::string& drive, char* mnttype)
static bool IsCDROM(const std::string& drive)
{
// Check if the device exists
if (!IsDevice(drive))
@ -190,7 +190,7 @@ std::vector<std::string> GetCDDevices()
for (unsigned int j = checklist[i].num_min; j <= checklist[i].num_max; ++j)
{
std::string drive = StringFromFormat(checklist[i].format, j);
if (IsCDROM(drive, nullptr))
if (IsCDROM(drive))
{
drives.push_back(std::move(drive));
}