mirror of
https://git.suyu.dev/suyu/suyu
synced 2024-10-31 20:37:52 +00:00
textures: Fix texture buffer size calculation
This commit is contained in:
parent
84027f4808
commit
e7bdf8b22a
1 changed files with 1 additions and 1 deletions
|
@ -213,7 +213,7 @@ struct TICEntry {
|
|||
if (header_version != TICHeaderVersion::OneDBuffer) {
|
||||
return width_minus_1 + 1;
|
||||
}
|
||||
return (buffer_high_width_minus_one << 16) | buffer_low_width_minus_one;
|
||||
return ((buffer_high_width_minus_one << 16) | buffer_low_width_minus_one) + 1;
|
||||
}
|
||||
|
||||
u32 Height() const {
|
||||
|
|
Loading…
Reference in a new issue