Skip to content

Commit

Permalink
Enable post processor for a prerelease
Browse files Browse the repository at this point in the history
  • Loading branch information
daid committed Mar 16, 2022
1 parent b6753fb commit 94af1f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/postProcessManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ PostProcessor::PostProcessor(string shadername, RenderChain* chain)

void PostProcessor::render(sp::RenderTarget& target)
{
if (!enabled || true) // post processors disabled until all issues with RenderTexture has been solved.
if (!enabled) // post processors disabled until all issues with RenderTexture has been solved.
{
chain->render(target);
return;
Expand Down

0 comments on commit 94af1f4

Please sign in to comment.