diff options
| author | JMC47 <JMC4789@gmail.com> | 2023-06-11 14:17:39 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-06-11 14:17:39 -0400 |
| commit | 5c0581e99057bca1d298861593c1d62333d95ace (patch) | |
| tree | c62215519df9f67bc50c7526b8a929e925dd5981 /Source/Core/VideoCommon/VideoConfig.cpp | |
| parent | bcd6e2e6dcf7c8171056b8c4c5e643d00e5a0bc9 (diff) | |
| parent | 2da7d16b7cf9a3844a4aa6005ede7926b31acf2d (diff) | |
Merge pull request #11867 from K0bin/adrenotools
Implement loading custom drivers on Android
Diffstat (limited to 'Source/Core/VideoCommon/VideoConfig.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/VideoConfig.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/Core/VideoCommon/VideoConfig.cpp b/Source/Core/VideoCommon/VideoConfig.cpp index 38ee680bf3..9284c8171f 100644 --- a/Source/Core/VideoCommon/VideoConfig.cpp +++ b/Source/Core/VideoCommon/VideoConfig.cpp @@ -172,6 +172,8 @@ void VideoConfig::Refresh() bPerfQueriesEnable = Config::Get(Config::GFX_PERF_QUERIES_ENABLE); bGraphicMods = Config::Get(Config::GFX_MODS_ENABLE); + + customDriverLibraryName = Config::Get(Config::GFX_DRIVER_LIB_NAME); } void VideoConfig::VerifyValidity() |
