Skip to content

Commit

Permalink
Markers - Fix marker scale (#8233)
Browse files Browse the repository at this point in the history
  • Loading branch information
PabstMirror authored Apr 26, 2021
1 parent d505156 commit 537e5d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion addons/markers/functions/fnc_initInsertMarker.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@

if !(GVAR(editingMarker) isEqualTo "") then {
//get the original scale
GVAR(currentMarkerScale) = markerSize GVAR(editingMarker);
GVAR(currentMarkerScale) = (markerSize GVAR(editingMarker)) param [0, 1];
};

private _curSelScale = GETGVAR(currentMarkerScale,1);
Expand Down

0 comments on commit 537e5d7

Please sign in to comment.