starlit  Diff

Differences From Artifact [670a4be42e]:

To Artifact [500f446f0a]:


   254    254   	return {
   255    255   		sz = c.sz;
   256    256   		name = string.format("%sfixed<%s,%s,%s>",
   257    257   			sign and 's' or 'u',
   258    258   			bits, base, prec
   259    259   		);
   260    260   		enc = function(v)
   261         -			return c.enc(v)
          261  +			return c.enc(v * mul)
   262    262   		end;
   263    263   		dec = function(s)
   264    264   			local v = c.dec(s)
   265    265   			return v / mul
   266    266   		end;
   267    267   	}
   268    268   end