diff options
| author | Fernando Sahmkow <fsahmkow27@gmail.com> | 2019-06-20 21:22:20 -0400 |
|---|---|---|
| committer | FernandoS27 <fsahmkow27@gmail.com> | 2019-06-20 21:24:47 -0400 |
| commit | d1812316e1b0f03af2ba10d4fe04be728e72725c (patch) | |
| tree | 10fb4e292fdfc9346246895dc80343edc3ed766f /src/video_core/texture_cache/surface_base.cpp | |
| parent | 51ba60b27e54beec476416cd0c7334110bcdb274 (diff) | |
texture_cache: Style and Corrections
Diffstat (limited to 'src/video_core/texture_cache/surface_base.cpp')
| -rw-r--r-- | src/video_core/texture_cache/surface_base.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/texture_cache/surface_base.cpp b/src/video_core/texture_cache/surface_base.cpp index 97bf9ad7a..051014c6a 100644 --- a/src/video_core/texture_cache/surface_base.cpp +++ b/src/video_core/texture_cache/surface_base.cpp @@ -101,7 +101,7 @@ MatchStructureResult SurfaceBaseImpl::MatchesStructure(const SurfaceParams& rhs) std::optional<std::pair<u32, u32>> SurfaceBaseImpl::GetLayerMipmap( const GPUVAddr candidate_gpu_addr) const { if (gpu_addr == candidate_gpu_addr) { - return {{0,0}}; + return {{0, 0}}; } if (candidate_gpu_addr < gpu_addr) { return {}; |
