diff options
| author | Pokechu22 <Pokechu022@gmail.com> | 2021-07-28 21:11:15 -0700 |
|---|---|---|
| committer | Pokechu22 <Pokechu022@gmail.com> | 2021-07-28 21:35:36 -0700 |
| commit | eb81968fe63d5df0f9b0efd1533567096c2bb59b (patch) | |
| tree | a783bc6e176d2c3658ceafb2f3c10ff757c114ee /Source/Core/VideoCommon/ShaderCache.cpp | |
| parent | c86c02e46bbb1d1f5643e83a2c89f749b959991c (diff) | |
Convert ShaderHostConfig to BitField
Diffstat (limited to 'Source/Core/VideoCommon/ShaderCache.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/ShaderCache.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/ShaderCache.cpp b/Source/Core/VideoCommon/ShaderCache.cpp index 40defb9fdc..655a5b6bb1 100644 --- a/Source/Core/VideoCommon/ShaderCache.cpp +++ b/Source/Core/VideoCommon/ShaderCache.cpp @@ -35,7 +35,7 @@ ShaderCache::~ShaderCache() bool ShaderCache::Initialize() { m_api_type = g_ActiveConfig.backend_info.api_type; - m_host_config = ShaderHostConfig::GetCurrent(); + m_host_config.bits = ShaderHostConfig::GetCurrent().bits; if (!CompileSharedPipelines()) return false; |
