hi,
i use this code for knowing my memory usage
local function checkMemory() collectgarbage( "collect" ) local memUsage\_str = string.format( "MEMORY = %.3f KB", collectgarbage( "count" ) ) print( memUsage\_str, "TEXTURE = "..(system.getInfo("textureMemoryUsed") / (1024 \* 1024) ).." MB" ) end timer.performWithDelay( 1000, checkMemory, 0 )
but the return is
MEMORY = 500.000 kb
my question is :
is it 500 000 kb > 500mo ?..disaster
or
is it 500 , 000kb> 0.5MO ?