diff --git a/Runtime/Graphics/Shaders/CColoredQuadFilter.cpp b/Runtime/Graphics/Shaders/CColoredQuadFilter.cpp index b7a19e217..062f89cd7 100644 --- a/Runtime/Graphics/Shaders/CColoredQuadFilter.cpp +++ b/Runtime/Graphics/Shaders/CColoredQuadFilter.cpp @@ -88,8 +88,6 @@ void CWideScreenFilter::draw(const zeus::CColor& color, float t) { } } -void CWideScreenFilter::DrawFilter(EFilterShape shape, const zeus::CColor& color, float t) {} - float CWideScreenFilter::SetViewportToMatch(float t) { if (g_Viewport.aspect < 1.7777f) { float targetHeight = g_Viewport.x8_width / 1.7777f; diff --git a/Runtime/Graphics/Shaders/CColoredQuadFilter.hpp b/Runtime/Graphics/Shaders/CColoredQuadFilter.hpp index 631a4ee68..fe42325d4 100644 --- a/Runtime/Graphics/Shaders/CColoredQuadFilter.hpp +++ b/Runtime/Graphics/Shaders/CColoredQuadFilter.hpp @@ -42,7 +42,7 @@ public: explicit CWideScreenFilter(EFilterType type) : m_top(type), m_bottom(type) {} explicit CWideScreenFilter(EFilterType type, const TLockedToken&) : CWideScreenFilter(type) {} void draw(const zeus::CColor& color, float t); - void DrawFilter(EFilterShape shape, const zeus::CColor& color, float t); + void DrawFilter(EFilterShape shape, const zeus::CColor& color, float t) { draw(color, t); } static float SetViewportToMatch(float t); static void SetViewportToFull();