Merge pull request #12991 from tygyh/Remove-dereferencing

Replace indirection operator with arrow operator
This commit is contained in:
Tilka 2024-08-10 18:22:30 +01:00 committed by GitHub
commit b76d05e4bb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

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;