Преглед изворни кода

textures: Fix texture buffer size calculation

ReinUsesLisp пре 7 година
родитељ
комит
e7bdf8b22a
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      src/video_core/textures/texture.h

+ 1 - 1
src/video_core/textures/texture.h

@@ -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 {