Changed POST_EFFECT_DISTORTION to POST_EFFECT_MINERAL

This commit is contained in:
n00b87
2025-11-23 22:47:23 -06:00
parent d5f9719d57
commit 320adcf808
8 changed files with 28 additions and 28 deletions

View File

@@ -122,7 +122,7 @@ void rc_pipeline_Render()
{
if(rc_canvas[rc_active_canvas].post_effect.is_active)
{
if(rc_canvas[rc_active_canvas].post_effect.type == RC_POST_PROCESS_DISTORTION)
if(rc_canvas[rc_active_canvas].post_effect.type == RC_POST_PROCESS_MINERAL)
{
IPostProcessGlass* post_process = (IPostProcessGlass*) rc_canvas[rc_active_canvas].post_effect.object;
VideoDriver->setRenderTarget(post_process->rt0, true, true);