Replace redundant dereferencing

This commit is contained in:
Dr. Dystopia 2024-07-22 09:44:07 +02:00
parent 5d5f1693b5
commit 8995975892

View File

@ -391,7 +391,7 @@ void DVDInterface::SetDisc(std::unique_ptr<DiscIO::VolumeDisc> disc,
if (auto_disc_change_paths)
{
ASSERT_MSG(DISCIO, (*auto_disc_change_paths).size() != 1,
ASSERT_MSG(DISCIO, auto_disc_change_paths->size() != 1,
"Cannot automatically change between one disc");
m_auto_disc_change_paths = *auto_disc_change_paths;