diff options
| author | 2023-05-03 10:52:56 -0400 | |
|---|---|---|
| committer | 2023-05-03 10:52:56 -0400 | |
| commit | daf7936095913d530dc461a7e62b22b7502e7fc4 (patch) | |
| tree | 83a4f930dc66b099c29311f2301e2d8d266dee23 /src/video_core/texture_cache | |
| parent | Merge pull request #10124 from liamwhite/pebkac (diff) | |
| parent | video_core: fix build on Apple Clang (diff) | |
| download | yuzu-daf7936095913d530dc461a7e62b22b7502e7fc4.tar.gz yuzu-daf7936095913d530dc461a7e62b22b7502e7fc4.tar.xz yuzu-daf7936095913d530dc461a7e62b22b7502e7fc4.zip | |
Merge pull request #10143 from liamwhite/fruit-company-moment
video_core: fix build on Apple Clang
Diffstat (limited to 'src/video_core/texture_cache')
| -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 e601f8446..f335009d0 100644 --- a/src/video_core/texture_cache/texture_cache.h +++ b/src/video_core/texture_cache/texture_cache.h | |||
| @@ -888,7 +888,7 @@ void TextureCache<P>::DownloadImageIntoBuffer(typename TextureCache<P>::Image* i | |||
| 888 | buffer, | 888 | buffer, |
| 889 | download_map.buffer, | 889 | download_map.buffer, |
| 890 | }; | 890 | }; |
| 891 | std::array buffer_offsets{ | 891 | std::array<u64, 2> buffer_offsets{ |
| 892 | buffer_offset, | 892 | buffer_offset, |
| 893 | download_map.offset, | 893 | download_map.offset, |
| 894 | }; | 894 | }; |