Просмотр исходного кода

decode/image: Fix typo in assert in GetComponentSize()

Lioncash 6 лет назад
Родитель
Сommit
24620bc4ea
1 измененных файлов с 3 добавлено и 3 удалено
  1. 3 3
      src/video_core/shader/decode/image.cpp

+ 3 - 3
src/video_core/shader/decode/image.cpp

@@ -119,7 +119,7 @@ ComponentType GetComponentType(Tegra::Engines::SamplerDescriptor descriptor,
         }
         break;
     }
-    UNIMPLEMENTED_MSG("texture format not implement={}", format);
+    UNIMPLEMENTED_MSG("Texture format not implemented={}", format);
     return ComponentType::FLOAT;
 }
 
@@ -212,7 +212,7 @@ u32 GetComponentSize(TextureFormat format, std::size_t component) {
     case TextureFormat::G4R4:
         return (component == 0 || component == 1) ? 4 : 0;
     default:
-        UNIMPLEMENTED_MSG("texture format not implement={}", format);
+        UNIMPLEMENTED_MSG("Texture format not implemented={}", format);
         return 0;
     }
 }
@@ -249,7 +249,7 @@ std::size_t GetImageComponentMask(TextureFormat format) {
     case TextureFormat::R1:
         return std::size_t{R};
     default:
-        UNIMPLEMENTED_MSG("texture format not implement={}", format);
+        UNIMPLEMENTED_MSG("Texture format not implemented={}", format);
         return std::size_t{R | G | B | A};
     }
 }