summaryrefslogtreecommitdiffhomepage
path: root/examples/shaders/resources/shaders/glsl330/palette-switch.fs
diff options
context:
space:
mode:
Diffstat (limited to 'examples/shaders/resources/shaders/glsl330/palette-switch.fs')
-rw-r--r--examples/shaders/resources/shaders/glsl330/palette-switch.fs2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/shaders/resources/shaders/glsl330/palette-switch.fs b/examples/shaders/resources/shaders/glsl330/palette-switch.fs
index 178c42c5..61b532ed 100644
--- a/examples/shaders/resources/shaders/glsl330/palette-switch.fs
+++ b/examples/shaders/resources/shaders/glsl330/palette-switch.fs
@@ -16,7 +16,7 @@ out vec4 finalColor;
void main()
{
// Texel color fetching from texture sampler
- vec4 texelColor = texture(texture0, fragTexCoord) * fragColor;
+ vec4 texelColor = texture(texture0, fragTexCoord)*fragColor;
// Convert the (normalized) texel color RED component (GB would work, too)
// to the palette index by scaling up from [0, 1] to [0, 255].