mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-25 07:21:14 +01:00
Repackage the unique_ptr in GameFile into a QSharedPointer.
This commit is contained in:
parent
749fc3bccc
commit
f2e9321591
@ -139,7 +139,8 @@ bool GameFile::TryLoadCache()
|
||||
|
||||
bool GameFile::TryLoadVolume()
|
||||
{
|
||||
QSharedPointer<DiscIO::IVolume> volume(DiscIO::CreateVolumeFromFilename(m_path.toStdString()));
|
||||
QSharedPointer<DiscIO::IVolume> volume(
|
||||
DiscIO::CreateVolumeFromFilename(m_path.toStdString()).release());
|
||||
if (volume == nullptr)
|
||||
return false;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user