From 0ef399141c6122b06e7089131ab3f6029c0ece0a Mon Sep 17 00:00:00 2001
From: lambdatiger <spam.stnuocca.sl@gmail.com>
Date: Mon, 29 Jul 2024 22:09:10 -0500
Subject: [PATCH] command capitalization

---
 addons/frag/functions/fnc_dev_addRound.sqf   | 6 +++---
 addons/frag/functions/fnc_dev_sphereDraw.sqf | 2 +-
 addons/frag/functions/fnc_dev_trackObj.sqf   | 6 +++---
 addons/frag/functions/fnc_doSpall.sqf        | 2 +-
 4 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/addons/frag/functions/fnc_dev_addRound.sqf b/addons/frag/functions/fnc_dev_addRound.sqf
index 96b8d1e1ae..3b54e83353 100644
--- a/addons/frag/functions/fnc_dev_addRound.sqf
+++ b/addons/frag/functions/fnc_dev_addRound.sqf
@@ -61,7 +61,7 @@ _projectile addEventHandler [
     {
         params ["_projectile", "", "", "_posASL"];
         private _posArr = (GVAR(dev_trackLines) get (getObjectID _projectile))#0;
-        _posArr pushBack ASLtoATL _posASL;
+        _posArr pushBack ASLToATL _posASL;
         if (GVAR(dbgSphere)) then {
             [_posASL, "green"] call FUNC(dev_sphereDraw);
         };
@@ -73,7 +73,7 @@ _projectile addEventHandler [
     {
         params ["_projectile", "_posASL"];
         private _posArr = (GVAR(dev_trackLines) get (getObjectID _projectile))#0;
-        _posArr pushBack ASLtoATL _posASL;
+        _posArr pushBack ASLToATL _posASL;
         if (GVAR(dbgSphere)) then {
             [_posASL, "red"] call FUNC(dev_sphereDraw);
         };
@@ -85,7 +85,7 @@ _projectile addEventHandler [
     {
         params ["_projectile", "_posASL"];
         private _posArr = (GVAR(dev_trackLines) get (getObjectID _projectile))#0;
-        _posArr pushBack ASLtoATL _posASL;
+        _posArr pushBack ASLToATL _posASL;
         if (GVAR(dbgSphere)) then {
             [_posASL, "blue"] call FUNC(dev_sphereDraw);
         };
diff --git a/addons/frag/functions/fnc_dev_sphereDraw.sqf b/addons/frag/functions/fnc_dev_sphereDraw.sqf
index 270514f0a1..a431e50790 100644
--- a/addons/frag/functions/fnc_dev_sphereDraw.sqf
+++ b/addons/frag/functions/fnc_dev_sphereDraw.sqf
@@ -34,7 +34,7 @@ if (_color select [0,1] != "(") then {
 };
 private _colorString = "#(argb,8,8,3)color" + _color;
 
-private _sphere = createVehicle ["Sign_Sphere10cm_F", ASLtoATL _posASL, [], 0, "CAN_COLLIDE"];
+private _sphere = createVehicle ["Sign_Sphere10cm_F", ASLToATL _posASL, [], 0, "CAN_COLLIDE"];
 _sphere setObjectTextureGlobal [0, _colorString];
 GVAR(dev_eventSpheres) pushBack _sphere;
 _sphere
diff --git a/addons/frag/functions/fnc_dev_trackObj.sqf b/addons/frag/functions/fnc_dev_trackObj.sqf
index dca9cc49ea..c8dd98a703 100644
--- a/addons/frag/functions/fnc_dev_trackObj.sqf
+++ b/addons/frag/functions/fnc_dev_trackObj.sqf
@@ -68,7 +68,7 @@ _object addEventHandler [
     {
         params ["_projectile", "", "", "_posASL"];
         private _posArr = (GVAR(dev_trackLines) get (getObjectID _projectile))#0;
-        _posArr pushBack ASLtoATL _posASL;
+        _posArr pushBack ASLToATL _posASL;
         if (GVAR(dbgSphere)) then {
             [_posASL, "green"] call FUNC(dev_sphereDraw);
         };
@@ -80,7 +80,7 @@ _object addEventHandler [
     {
         params ["_projectile", "_posASL"];
         private _posArr = (GVAR(dev_trackLines) get (getObjectID _projectile))#0;
-        _posArr pushBack ASLtoATL _posASL;
+        _posArr pushBack ASLToATL _posASL;
         if (GVAR(dbgSphere)) then {
             [_posASL, "red"] call FUNC(dev_sphereDraw);
         };
@@ -92,7 +92,7 @@ _object addEventHandler [
     {
         params ["_projectile", "_posASL"];
         private _posArr = (GVAR(dev_trackLines) get (getObjectID _projectile))#0;
-        _posArr pushBack ASLtoATL _posASL;
+        _posArr pushBack ASLToATL _posASL;
         if (GVAR(dbgSphere)) then {
             [_posASL, "blue"] call FUNC(dev_sphereDraw);
         };
diff --git a/addons/frag/functions/fnc_doSpall.sqf b/addons/frag/functions/fnc_doSpall.sqf
index 1c3e8f4f18..1ec25e6fc6 100644
--- a/addons/frag/functions/fnc_doSpall.sqf
+++ b/addons/frag/functions/fnc_doSpall.sqf
@@ -70,7 +70,7 @@ for "_i" from 0 to 20 do {
 if (_spallPosAGL isEqualTo _pos1) exitWith {
     TRACE_1("can't find other side",_oldPosASL);
 };
-_spallPosAGL = ASLtoAGL _spallPosAGL;
+_spallPosAGL = ASLToAGL _spallPosAGL;
 
 (_shotParents#1) setVariable [QGVAR(nextSpallEvent), CBA_missionTime + ACE_FRAG_SPALL_UNIT_HOLDOFF];
 private _oldVelocitySpherical = _oldVelocity call CBA_fnc_vect2polar;