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

astc: Pass val in Replicate by copy

ReinUsesLisp 6 лет назад
Родитель
Сommit
d71d7d917e
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      src/video_core/textures/astc.cpp

+ 1 - 1
src/video_core/textures/astc.cpp

@@ -628,7 +628,7 @@ static void FillError(u32* outBuf, u32 blockWidth, u32 blockHeight) {
 // Replicates low numBits such that [(toBit - 1):(toBit - 1 - fromBit)]
 // Replicates low numBits such that [(toBit - 1):(toBit - 1 - fromBit)]
 // is the same as [(numBits - 1):0] and repeats all the way down.
 // is the same as [(numBits - 1):0] and repeats all the way down.
 template <typename IntType>
 template <typename IntType>
-static IntType Replicate(const IntType& val, u32 numBits, u32 toBit) {
+static IntType Replicate(IntType val, u32 numBits, u32 toBit) {
     if (numBits == 0)
     if (numBits == 0)
         return 0;
         return 0;
     if (toBit == 0)
     if (toBit == 0)