From 03843a1f7007e62c7c718646f8d0f64e4df9f47d Mon Sep 17 00:00:00 2001 From: A Man Date: Thu, 19 May 2022 11:22:45 +0200 Subject: [PATCH] Fix loading screen size Made by @Victor-the-Cleaner --- SQF/dayz_code/system/progress_monitor.sqf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/SQF/dayz_code/system/progress_monitor.sqf b/SQF/dayz_code/system/progress_monitor.sqf index de053011b..929a61315 100644 --- a/SQF/dayz_code/system/progress_monitor.sqf +++ b/SQF/dayz_code/system/progress_monitor.sqf @@ -31,6 +31,8 @@ while {true} do { if (!isNil "_display") then { _image = _display displayCtrl 1200; _image ctrlSetText getText(missionConfigFile >> "loadScreen"); + _image ctrlSetPosition [safeZoneX, safeZoneY, safeZoneW, safeZoneH]; + _image ctrlCommit 0; if (dayz_loadScreenMsg != "" ) then { _control1 = _display displayctrl 8400; _control1 ctrlSetStructuredText parseText format["%1",dayz_loadScreenMsg];