From 7b948b96c190da078b83a92bfed0ca3de92d0da8 Mon Sep 17 00:00:00 2001 From: Wayland-Smithy <64715958+Wayland-Smithy@users.noreply.github.com> Date: Thu, 8 Jul 2021 20:14:50 -0700 Subject: [PATCH] Fixes Fit Viewport being forced onto all connecting clients regardless of their manual Auto Fit preference (#60079) Removed a single line calling fit_viewport() when clients connect with no consideration for preference. --- code/modules/client/client_procs.dm | 1 - 1 file changed, 1 deletion(-) diff --git a/code/modules/client/client_procs.dm b/code/modules/client/client_procs.dm index d26025f8b66..8a4455311f4 100644 --- a/code/modules/client/client_procs.dm +++ b/code/modules/client/client_procs.dm @@ -446,7 +446,6 @@ GLOBAL_LIST_INIT(blacklisted_builds, list( view_size = new(src, getScreenSize(prefs.widescreenpref)) view_size.resetFormat() view_size.setZoomMode() - fit_viewport() Master.UpdateTickRate() SEND_GLOBAL_SIGNAL(COMSIG_GLOB_CLIENT_CONNECT, src)