diff options
| author | iwubcode <iwubcode@users.noreply.github.com> | 2019-11-01 01:30:24 -0500 |
|---|---|---|
| committer | iwubcode <iwubcode@users.noreply.github.com> | 2020-10-03 17:10:36 -0500 |
| commit | 4fff04db3ce16c72d8b3b95df2285a129605fde4 (patch) | |
| tree | 5037e621f92d916e79a504c6b0d85ecc6df73180 /Source/Core/VideoCommon/HiresTextures.cpp | |
| parent | fd3af4c5d32a34b27c45b478c74fa1127b6438b9 (diff) | |
Core: Load custom textures after inputs has been loaded and avoid sending force texture reload during startup for dynamic textures. This ensures that custom texture loading only happens once and users don't see any weird flashes on startup
Diffstat (limited to 'Source/Core/VideoCommon/HiresTextures.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/HiresTextures.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/HiresTextures.cpp b/Source/Core/VideoCommon/HiresTextures.cpp index d1ced9e307..039bc87c5e 100644 --- a/Source/Core/VideoCommon/HiresTextures.cpp +++ b/Source/Core/VideoCommon/HiresTextures.cpp @@ -51,7 +51,7 @@ static std::thread s_prefetcher; void HiresTexture::Init() { - Update(); + // Note: Update is not called here so that we handle dynamic textures on startup more gracefully } void HiresTexture::Shutdown() |
