Compare commits

...

1 Commits

Author SHA1 Message Date
andrea.villa 5c63cf2f51 MODIFICA PROVVISORIA NON FUNZIONANTE
Aggiunto 500 al delta pinzaggio solo per mostrare a in OpenHouse. NON rilasciabile a cliente finale.
2026-03-16 15:20:28 +01:00
2 changed files with 6 additions and 5 deletions
+5 -4
View File
@@ -1158,9 +1158,10 @@ end
---------------------------------------------------------------------
local function GetDeltaTol( dLenPresa, TCING, HCING, HOVM, Carr, bFixedDelta)
local dDeltaTolEff = DELTA_SIC
local TempDeltaTol = DeltaTol + 500
if Carr == 'Y' then
local dLenPreEff = dLenPresa - TCING
if dLenPreEff < MinJoin + DeltaTol then
if dLenPreEff < MinJoin + TempDeltaTol then
dDeltaTolEff = max( DELTA_SIC, dLenPreEff - MinJoin + 10 * GEO.EPS_SMALL)
else
if BD.GO_FAST and BD.GO_FAST ~= 0 then
@@ -1170,15 +1171,15 @@ local function GetDeltaTol( dLenPresa, TCING, HCING, HOVM, Carr, bFixedDelta)
dDeltaTolEff = 900
end
else
dDeltaTolEff = DeltaTol
dDeltaTolEff = TempDeltaTol
end
end
elseif Carr == 'V' then
local dLenPreEff = dLenPresa - HCING - HOVM
if dLenPreEff < MinJoin + DeltaTol then
if dLenPreEff < MinJoin + TempDeltaTol then
dDeltaTolEff = max( DELTA_SIC, dLenPreEff - MinJoin + 10 * GEO.EPS_SMALL)
else
dDeltaTolEff = DeltaTol
dDeltaTolEff = TempDeltaTol
end
end
return EgtIf( bFixedDelta, min( dDeltaTolEff, DELTA_TOL_FIXED), dDeltaTolEff)
+1 -1
View File
@@ -24,7 +24,7 @@
require( 'EmtGenerator')
EgtEnableDebug( false)
PP_VER = '3.1c2'
PP_VER = 'VERSIONE_ERRATA'
PP_NVER = '3.1.3.2'
MIN_MACH_VER = '2.7j1'
MACH_NAME = EgtGetCurrMachineName()