Skip to content

Commit

Permalink
Use absolute size for loading screen logo
Browse files Browse the repository at this point in the history
  • Loading branch information
veteran29 committed Jan 7, 2024
1 parent c80fb83 commit be70128
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions addons/loading/XEH_loadingDisplay.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,8 @@ params ["_display"];

TRACE_1("Loading screen",_display);

private _size = 0.1;
private _width = _size * safezoneW;
private _height = _size * safezoneH * (getResolution select 4);
private _width = 256 * pixelW;
private _height = 256 * pixelH;

private _picture = _display ctrlCreate ["RscPicture", -1];
_picture ctrlSetPosition [
Expand Down

0 comments on commit be70128

Please sign in to comment.