Quote: "Items being placed at undeclared memory locations will cause memory leaks if the engine doesnt capture them"
below is an example shows an array that the order of the variables will cause problems
if linux isnt detecting an error as such its possible that it may alter background graphics
because your trying to place a
value that the AGKengine did not free up and places it
who knows where. Its just something to try and check for logic errors. If thats not the problem
it still may be some other memory leak
do
num as integer[10,100,1000]
for z = 1 to 10
for y = 1 to 100
for x = 1 to 1000
num[z,y,x]=1
next x
next y
next z
for x = 1 to 1000
for y = 1 to 100
for z = 1 to 10
//num[x,y,z]=1 ///that logic errors on this line
num[z,y,x]=1 ///works for the logic and order of the for loops
next z
next y
next x
Print( ScreenFPS() )
Sync()
loop
PS Can you post an example that causes the problem or a snippet of code that does