Oxygen Basic
Programming => Problems & Solutions => Topic started by: Peter on December 20, 2012, 12:34:09 PM
-
Deleted
-
Hi Peter,
It appears to be a mysterious invisible character somewhere
Cleaned up:
sys ppmHandle[128]
ppmHandle[1]= GetMemory 512
Sub FreePPM()
sys u
for u=1 to 128
if ppmHandle[u] >0
FreeMemory ppmHandle[u]
endif
next
End Sub
Charles
-
Hi Peter,
I think it was a null character, which would be interpreted as 'end of source code'
Rounding seems okay, I would need to see the expression you use. But using round() should resolve the problem.
Charles