diff options
| author | Jordan Woyak <jordan.woyak@gmail.com> | 2025-02-22 23:44:39 -0600 |
|---|---|---|
| committer | Jordan Woyak <jordan.woyak@gmail.com> | 2025-03-17 20:46:24 -0500 |
| commit | 561aee7707d4ace0d987deed6c8084178c653c3d (patch) | |
| tree | bb31738662f9ad98ae6029b7daacb52d80dafad5 /Source/Core/VideoCommon/VideoConfig.cpp | |
| parent | 4b711e1e0aaa4c112a5815b6b7aa560014fda6de (diff) | |
Config: Expose Default and 1x Anisotropic Filtering setting.
Diffstat (limited to 'Source/Core/VideoCommon/VideoConfig.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/VideoConfig.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/VideoConfig.cpp b/Source/Core/VideoCommon/VideoConfig.cpp index 678541931e..b540358fb1 100644 --- a/Source/Core/VideoCommon/VideoConfig.cpp +++ b/Source/Core/VideoCommon/VideoConfig.cpp @@ -265,7 +265,7 @@ void CheckForConfigChanges() const ShaderHostConfig old_shader_host_config = ShaderHostConfig::GetCurrent(); const StereoMode old_stereo = g_ActiveConfig.stereo_mode; const u32 old_multisamples = g_ActiveConfig.iMultisamples; - const int old_anisotropy = g_ActiveConfig.iMaxAnisotropy; + const auto old_anisotropy = g_ActiveConfig.iMaxAnisotropy; const int old_efb_access_tile_size = g_ActiveConfig.iEFBAccessTileSize; const auto old_texture_filtering_mode = g_ActiveConfig.texture_filtering_mode; const bool old_vsync = g_ActiveConfig.bVSyncActive; |
