diff options
| author | 2021-08-29 18:19:53 +0200 | |
|---|---|---|
| committer | 2021-08-29 18:19:53 +0200 | |
| commit | ff48f06fb92e5fe2105fd6b4c5d4f57bbb2714c7 (patch) | |
| tree | 2392bbc76f6005587df9d1b1415e35818fba0ac7 /src/video_core/texture_cache | |
| parent | Garbage Collection: enable as default, eliminate option. (diff) | |
| download | yuzu-ff48f06fb92e5fe2105fd6b4c5d4f57bbb2714c7.tar.gz yuzu-ff48f06fb92e5fe2105fd6b4c5d4f57bbb2714c7.tar.xz yuzu-ff48f06fb92e5fe2105fd6b4c5d4f57bbb2714c7.zip | |
Garbage Collection: Adress Feedback.
Diffstat (limited to 'src/video_core/texture_cache')
| -rw-r--r-- | src/video_core/texture_cache/image_base.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/texture_cache/image_base.h b/src/video_core/texture_cache/image_base.h index 662089e3d..0c17a791b 100644 --- a/src/video_core/texture_cache/image_base.h +++ b/src/video_core/texture_cache/image_base.h | |||
| @@ -80,7 +80,7 @@ struct ImageBase { | |||
| 80 | VAddr cpu_addr_end = 0; | 80 | VAddr cpu_addr_end = 0; |
| 81 | 81 | ||
| 82 | u64 modification_tick = 0; | 82 | u64 modification_tick = 0; |
| 83 | size_t lru_index = ~0; | 83 | size_t lru_index = SIZE_MAX; |
| 84 | 84 | ||
| 85 | std::array<u32, MAX_MIP_LEVELS> mip_level_offsets{}; | 85 | std::array<u32, MAX_MIP_LEVELS> mip_level_offsets{}; |
| 86 | 86 | ||