diff options
author | Fernando Sahmkow <fsahmkow27@gmail.com> | 2019-06-14 22:40:04 +0200 |
---|---|---|
committer | ReinUsesLisp <reinuseslisp@airmail.cc> | 2019-06-21 02:38:34 +0200 |
commit | 082740d34db0996a0af73d7680c57e1abb31c712 (patch) | |
tree | bcc9ecb6af93114eaf008f8a576b1a99b9f189fe /src/video_core/texture_cache | |
parent | texture_cache: Initialize all siblings to invalid pixel format. (diff) | |
download | yuzu-082740d34db0996a0af73d7680c57e1abb31c712.tar yuzu-082740d34db0996a0af73d7680c57e1abb31c712.tar.gz yuzu-082740d34db0996a0af73d7680c57e1abb31c712.tar.bz2 yuzu-082740d34db0996a0af73d7680c57e1abb31c712.tar.lz yuzu-082740d34db0996a0af73d7680c57e1abb31c712.tar.xz yuzu-082740d34db0996a0af73d7680c57e1abb31c712.tar.zst yuzu-082740d34db0996a0af73d7680c57e1abb31c712.zip |
Diffstat (limited to 'src/video_core/texture_cache')
-rw-r--r-- | src/video_core/texture_cache/texture_cache.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/video_core/texture_cache/texture_cache.h b/src/video_core/texture_cache/texture_cache.h index 8213f434d..a9e61cba1 100644 --- a/src/video_core/texture_cache/texture_cache.h +++ b/src/video_core/texture_cache/texture_cache.h @@ -534,10 +534,6 @@ private: const auto host_ptr{memory_manager->GetPointer(gpu_addr)}; const auto cache_addr{ToCacheAddr(host_ptr)}; - if (gpu_addr == 0x00000001682F0000ULL) { - LOG_CRITICAL(HW_GPU, "Here's the texture!"); - } - // Step 0: guarantee a valid surface if (!cache_addr) { // Return a null surface if it's invalid |