Frontend: Only load disk resources if hw shader is enabled
This commit is contained in:
parent
c0df8271bf
commit
bd29261e0a
1 changed files with 1 additions and 1 deletions
|
@ -106,7 +106,7 @@ ShaderDiskCache::ShaderDiskCache(bool separable) : separable{separable} {}
|
||||||
|
|
||||||
std::optional<std::vector<ShaderDiskCacheRaw>> ShaderDiskCache::LoadTransferable() {
|
std::optional<std::vector<ShaderDiskCacheRaw>> ShaderDiskCache::LoadTransferable() {
|
||||||
const bool has_title_id = GetProgramID() != 0;
|
const bool has_title_id = GetProgramID() != 0;
|
||||||
if (!Settings::values.use_disk_shader_cache || !has_title_id)
|
if (!Settings::values.use_hw_shader || !Settings::values.use_disk_shader_cache || !has_title_id)
|
||||||
return {};
|
return {};
|
||||||
tried_to_load = true;
|
tried_to_load = true;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue