mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
18 lines
286 B
Plaintext
18 lines
286 B
Plaintext
|
/*
|
||
|
* Author: CAA-Picard
|
||
|
*
|
||
|
* Cancel the drawing of the current line marker
|
||
|
*
|
||
|
* Argument:
|
||
|
* None
|
||
|
*
|
||
|
* Return value:
|
||
|
* Nothing
|
||
|
*/
|
||
|
|
||
|
GVAR(drawing) = false;
|
||
|
if (count GVAR(tempLineMarker) > 0) then {
|
||
|
deleteMarkerLocal (GVAR(tempLineMarker) select 0);
|
||
|
};
|
||
|
GVAR(tempLineMarker) = [];
|