From 4ff9e52ba7913aab21f53ee62c52e16068d33300 Mon Sep 17 00:00:00 2001 From: Paulchen Panther <16664240+Paulchen-Panther@users.noreply.github.com> Date: Fri, 29 Jan 2021 20:17:01 +0100 Subject: [PATCH] [HotFix] https://git.io/Jt8S6 --- libsrc/utils/ImageResampler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libsrc/utils/ImageResampler.cpp b/libsrc/utils/ImageResampler.cpp index faa5f575..6bda56d6 100644 --- a/libsrc/utils/ImageResampler.cpp +++ b/libsrc/utils/ImageResampler.cpp @@ -52,7 +52,7 @@ void ImageResampler::processImage(const uint8_t * data, int width, int height, i cropRight = width >> 1; break; case VideoMode::VIDEO_3DTAB: - cropBottom = width >> 1; + cropBottom = height >> 1; break; default: break;