Browse Source

Merge pull request #6888 from v1993/patch-3

video_core: eliminate constant ternary
pull/15/merge
Ameer J 4 years ago
committed by GitHub
parent
commit
bde6b899a1
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/video_core/textures/texture.h

2
src/video_core/textures/texture.h

@ -159,7 +159,7 @@ static_assert(sizeof(TextureHandle) == 4, "TextureHandle has wrong size");
return {raw, raw};
} else {
const Tegra::Texture::TextureHandle handle{raw};
return {handle.tic_id, via_header_index ? handle.tic_id : handle.tsc_id};
return {handle.tic_id, handle.tsc_id};
}
}

Loading…
Cancel
Save