summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/HiresTextures.cpp
diff options
context:
space:
mode:
authoriwubcode <iwubcode@users.noreply.github.com>2019-11-01 01:30:24 -0500
committeriwubcode <iwubcode@users.noreply.github.com>2020-10-03 17:10:36 -0500
commit4fff04db3ce16c72d8b3b95df2285a129605fde4 (patch)
tree5037e621f92d916e79a504c6b0d85ecc6df73180 /Source/Core/VideoCommon/HiresTextures.cpp
parentfd3af4c5d32a34b27c45b478c74fa1127b6438b9 (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.cpp2
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()