- - - - - - - -
Any image generated with Lua causes problems like;
1
2
3
4
5
6
2
3
4
5
6
t = {} print(t[1]) t[1] = image('gfx/sprites/block.bmp', 1, 1, 1) print(t[1]) freeimage(t[1]) print(t[1])
Will return;
1
2
3
2
3
nil 1 1
So you CAN'T possibly check with Lua if an image has been freeimaged.