From dc2406d2b189a0513e8c3107e30d1ce6ea27d6a3 Mon Sep 17 00:00:00 2001 From: Gleb Mazovetskiy Date: Fri, 16 Aug 2024 20:12:01 +0100 Subject: [PATCH] Further increase outline pixels to 2048 Follow-up to https://github.com/diasurgical/devilutionX/pull/7157 --- Source/engine/render/clx_render.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/engine/render/clx_render.cpp b/Source/engine/render/clx_render.cpp index 2186260699b..34d8c265030 100644 --- a/Source/engine/render/clx_render.cpp +++ b/Source/engine/render/clx_render.cpp @@ -231,7 +231,7 @@ void DoRenderBackwards( } } -constexpr size_t MaxOutlinePixels = 1536; +constexpr size_t MaxOutlinePixels = 2048; constexpr size_t MaxOutlineSpriteWidth = 253; using OutlinePixels = StaticVector, MaxOutlinePixels>; using OutlineRowSolidRuns = StaticVector, MaxOutlineSpriteWidth / 2 + 1>;