From 741f64604c825d432eab358f75c69c40c1ae28f8 Mon Sep 17 00:00:00 2001 From: Ricardo Garcia Date: Sun, 24 Jan 2021 23:25:02 +0100 Subject: [PATCH] Remove duplicate comment --- src/client/refresh/vk/vk_rmain.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/client/refresh/vk/vk_rmain.c b/src/client/refresh/vk/vk_rmain.c index 62854831..0a85a1f1 100644 --- a/src/client/refresh/vk/vk_rmain.c +++ b/src/client/refresh/vk/vk_rmain.c @@ -949,7 +949,6 @@ static void RE_RenderView (refdef_t *fd) // When rendering the world, scale down scissor proportionally to vk_pixel_size. if (vk_state.current_renderpass == RP_WORLD) { - // When rendering the world, scale down scissor proportionally to vk_pixel_size. const float divisor = (vk_pixel_size->value < 1.0f ? 1.0f : vk_pixel_size->value); scissor.offset.x = (int32_t)floorf(scissor.offset.x / divisor); scissor.offset.y = (int32_t)floorf(scissor.offset.y / divisor);