diff options
author | Lioncash <mathew1800@gmail.com> | 2022-02-02 20:12:31 +0100 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2022-02-02 20:37:27 +0100 |
commit | e015dc82646091c91f10b59f40eb5b76e26a2046 (patch) | |
tree | 9864facb1cfa74c5631561e82716fc189ef3f115 /src | |
parent | texture_cache: Remove dead code within SynchronizeAliases (diff) | |
download | yuzu-e015dc82646091c91f10b59f40eb5b76e26a2046.tar yuzu-e015dc82646091c91f10b59f40eb5b76e26a2046.tar.gz yuzu-e015dc82646091c91f10b59f40eb5b76e26a2046.tar.bz2 yuzu-e015dc82646091c91f10b59f40eb5b76e26a2046.tar.lz yuzu-e015dc82646091c91f10b59f40eb5b76e26a2046.tar.xz yuzu-e015dc82646091c91f10b59f40eb5b76e26a2046.tar.zst yuzu-e015dc82646091c91f10b59f40eb5b76e26a2046.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/video_core/texture_cache/texture_cache.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/texture_cache/texture_cache.h b/src/video_core/texture_cache/texture_cache.h index d57c0c41a..72eeb8bbd 100644 --- a/src/video_core/texture_cache/texture_cache.h +++ b/src/video_core/texture_cache/texture_cache.h @@ -343,7 +343,7 @@ template <bool has_blacklists> void TextureCache<P>::FillImageViews(DescriptorTable<TICEntry>& table, std::span<ImageViewId> cached_image_view_ids, std::span<ImageViewInOut> views) { - bool has_blacklisted; + bool has_blacklisted = false; do { has_deleted_images = false; if constexpr (has_blacklists) { |