summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/PixelShaderGen.cpp
diff options
context:
space:
mode:
authorPokechu22 <Pokechu022@gmail.com>2021-07-08 15:48:08 -0700
committerPokechu22 <Pokechu022@gmail.com>2021-07-08 15:48:14 -0700
commita379456f381f474bfdcb993fd4b28c84de5400d3 (patch)
tree4151b30fe5726cb9d5395ccf4a2ae8aff18eaedb /Source/Core/VideoCommon/PixelShaderGen.cpp
parent2feced2e332f29dd4ca500d76410e797403d562e (diff)
Fix indentation for alphabump
Diffstat (limited to 'Source/Core/VideoCommon/PixelShaderGen.cpp')
-rw-r--r--Source/Core/VideoCommon/PixelShaderGen.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/PixelShaderGen.cpp b/Source/Core/VideoCommon/PixelShaderGen.cpp
index 4413c6d9b6..a264843377 100644
--- a/Source/Core/VideoCommon/PixelShaderGen.cpp
+++ b/Source/Core/VideoCommon/PixelShaderGen.cpp
@@ -1019,7 +1019,7 @@ static void WriteStage(ShaderCode& out, const pixel_shader_uid_data* uid_data, i
'3', // ITF_3: 0bIIIAAAAA -> 0bAAAAA000, shift of 3
};
- out.Write("alphabump = (iindtex{}.{} << {}) & 248;\n", tevind.bt.Value(),
+ out.Write("\talphabump = (iindtex{}.{} << {}) & 248;\n", tevind.bt.Value(),
tev_ind_alpha_sel[u32(tevind.bs.Value())],
tev_ind_alpha_shift[u32(tevind.fmt.Value())]);
}