From e1828c352bef1d41e429dc5a4e589dca54c67206 Mon Sep 17 00:00:00 2001 From: lizzie Date: Fri, 9 Jan 2026 10:50:18 +0000 Subject: [PATCH] clang in debian stfu --- src/video_core/host1x/vic.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/video_core/host1x/vic.cpp b/src/video_core/host1x/vic.cpp index 42bf09581b..71046cba3f 100644 --- a/src/video_core/host1x/vic.cpp +++ b/src/video_core/host1x/vic.cpp @@ -334,7 +334,7 @@ void Vic::Blend(const ConfigStruct& config, const SlotStruct& slot, VideoPixelFo s32 mr[4][4]; for (u32 j = 0; j < 3; ++j) for (u32 i = 0; i < 4; ++i) - mr[j][i] = s64(((amt->m[i] >> shifts[j]) & mat_mask) << (64 - 20)) >> (64 - 20); + mr[j][i] = s32(s64(((amt->m[i] >> shifts[j]) & mat_mask) << (64 - 20)) >> (64 - 20)); auto const clamp_min = s32(slot.config.soft_clamp_low.Value()); auto const clamp_max = s32(slot.config.soft_clamp_high.Value());