Float problem with Tailbite 1.4.6 and Win7(x64)
Posted: Sat Jan 22, 2011 2:52 pm
Hi,
i found a little problem and inform about it and the solution:
if you use a term as procedurereturn of a float procedure only the first term comes back
if you use this proceduredll the fMin gets back
if you use this proceduredll the fMin+f Max gets back
with a integer proceduredll everythink ist fine, fMin + fMax gets back
P.S: Dear lexvictory you make a great job and i love and need tailbite. So i post it and I hope the Bug Posting Rules are correct now...
Greeting Michael
i found a little problem and inform about it and the solution:
if you use a term as procedurereturn of a float procedure only the first term comes back
if you use this proceduredll the fMin gets back
Code: Select all
ProcedureDLL.f ADD_f(fMin.f, fMax.f)
ProcedureReturn fMin + fMax
EndProcedureif you use this proceduredll the fMin+f Max gets back
Code: Select all
ProcedureDLL.f ADD_ff(fMin.f, fMax.f)
Float.f = fMin + fMax
ProcedureReturn Float
EndProcedure Code: Select all
ProcedureDLL.i ADD_i(fMin, fMax)
ProcedureReturn fMin + fMax
EndProcedure Greeting Michael