Skip to content

Commit 080c5ab

Browse files
committed
maybe fix glow strength
1 parent 31f0e50 commit 080c5ab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Source/Managers/PostProcessMan.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -443,7 +443,7 @@ void PostProcessMan::DrawPostScreenEffects() {
443443
effectStrength = postEffect.m_Strength;
444444
effectPosX = postEffect.m_Pos.m_X - postEffect.m_Bitmap->w / 2;
445445
effectPosY = postEffect.m_Pos.m_Y - postEffect.m_Bitmap->h / 2;
446-
DrawTexture(g_GLResourceMan.GetStaticTextureFromBitmap(postEffect.m_Bitmap), effectPosX, effectPosY, {.r=effectStrength, .g=effectStrength, .b=effectStrength, .a=255});
446+
DrawTexture(g_GLResourceMan.GetStaticTextureFromBitmap(postEffect.m_Bitmap), effectPosX, effectPosY, {.r=effectStrength, .g=effectStrength, .b=effectStrength, .a=effectStrength});
447447
}
448448
}
449449
}

0 commit comments

Comments
 (0)