Statistics: Posted by woodslanding — 03 Dec 2008, 18:36
CODE:
function toDecimal(val : integer) : integer;begin result := val * 100 DIV 127;end;CODE:
function toDecimal(val : integer) : single;begin result := val * 100 / 127;end;CODE:
result := single(val) * 100 / 127;Statistics: Posted by bsork — 03 Dec 2008, 14:23
Statistics: Posted by woodslanding — 03 Dec 2008, 06:59
Statistics: Posted by woodslanding — 03 Dec 2008, 18:36
CODE:
function toDecimal(val : integer) : integer;begin result := val * 100 DIV 127;end;CODE:
function toDecimal(val : integer) : single;begin result := val * 100 / 127;end;CODE:
result := single(val) * 100 / 127;Statistics: Posted by bsork — 03 Dec 2008, 14:23
Statistics: Posted by woodslanding — 03 Dec 2008, 06:59