From 1bd42db07eece9a1a76bc773f75ee8e4c88c4857 Mon Sep 17 00:00:00 2001 From: Alex Barney Date: Sun, 3 Mar 2019 12:59:00 -0600 Subject: [PATCH] Renaming part 5 --- Ryujinx.Graphics/Graphics3d/Texture/ASTCDecoder.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Ryujinx.Graphics/Graphics3d/Texture/ASTCDecoder.cs b/Ryujinx.Graphics/Graphics3d/Texture/ASTCDecoder.cs index 4f58941373..580a693521 100644 --- a/Ryujinx.Graphics/Graphics3d/Texture/ASTCDecoder.cs +++ b/Ryujinx.Graphics/Graphics3d/Texture/ASTCDecoder.cs @@ -955,8 +955,8 @@ namespace Ryujinx.Graphics.Texture { C = 93; // B = b000b0bb0 - int b = (BitValue >> 1) & 1; - B = (b << 8) | (b << 4) | (b << 2) | (b << 1); + int b2 = (BitValue >> 1) & 1; + B = (b2 << 8) | (b2 << 4) | (b2 << 2) | (b2 << 1); break; } @@ -1026,8 +1026,8 @@ namespace Ryujinx.Graphics.Texture { C = 54; // B = b0000bb00 - int b = (BitValue >> 1) & 1; - B = (b << 8) | (b << 3) | (b << 2); + int b2 = (BitValue >> 1) & 1; + B = (b2 << 8) | (b2 << 3) | (b2 << 2); break; }