diff options
author | ReinUsesLisp <reinuseslisp@airmail.cc> | 2019-03-12 20:57:03 +0100 |
---|---|---|
committer | ReinUsesLisp <reinuseslisp@airmail.cc> | 2019-03-13 00:20:57 +0100 |
commit | aa59d77c3bd7745f03e9bc1d1dca17bb0c338c1f (patch) | |
tree | db24e62b8d523488b1ac028e8816e7792fbf5638 /src/video_core/textures | |
parent | video_core/texture: Add a raw representation of TSCEntry (diff) | |
download | yuzu-aa59d77c3bd7745f03e9bc1d1dca17bb0c338c1f.tar yuzu-aa59d77c3bd7745f03e9bc1d1dca17bb0c338c1f.tar.gz yuzu-aa59d77c3bd7745f03e9bc1d1dca17bb0c338c1f.tar.bz2 yuzu-aa59d77c3bd7745f03e9bc1d1dca17bb0c338c1f.tar.lz yuzu-aa59d77c3bd7745f03e9bc1d1dca17bb0c338c1f.tar.xz yuzu-aa59d77c3bd7745f03e9bc1d1dca17bb0c338c1f.tar.zst yuzu-aa59d77c3bd7745f03e9bc1d1dca17bb0c338c1f.zip |
Diffstat (limited to 'src/video_core/textures')
-rw-r--r-- | src/video_core/textures/texture.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/textures/texture.h b/src/video_core/textures/texture.h index a2b98245b..ff1165053 100644 --- a/src/video_core/textures/texture.h +++ b/src/video_core/textures/texture.h @@ -311,7 +311,7 @@ struct TSCEntry { }; std::array<f32, 4> border_color; }; - std::array<u32, 8> raw; + std::array<u8, 0x20> raw; }; float GetMaxAnisotropy() const { |