mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-24 23:11:14 +01:00
GameFile: don't download covers for empty game IDs
This commit is contained in:
parent
88fd9fd577
commit
bd5c604718
@ -207,7 +207,7 @@ bool GameFile::CustomCoverChanged()
|
||||
|
||||
void GameFile::DownloadDefaultCover()
|
||||
{
|
||||
if (!m_default_cover.buffer.empty() || !UseGameCovers())
|
||||
if (!m_default_cover.buffer.empty() || !UseGameCovers() || m_gametdb_id.empty())
|
||||
return;
|
||||
|
||||
const auto cover_path = File::GetUserPath(D_COVERCACHE_IDX) + DIR_SEP;
|
||||
|
Loading…
x
Reference in New Issue
Block a user