Hi there,
This maybe a bug but im not sure, it might be me doing something stupid somewhere. Anyway, you might want to test this out.
I am creating 3 bitmaps, and then copying a different bitmap onto them. To do this i'm using a FOR/NEXT loop.
for x = 5 to 7
create bitmap x,150,50
copy bitmap 11,x
next x
Seems simple enough so far yeah?
Now the fun begins, you would of thought with the code above, i'd end up with 4 identical bitmaps (the old one, with three new ones).
What I did end up with is a perfect old (copied from) bitmap, and two nice perfect new ones. Bitmap number seven has turned to be an exact copy of bitmap 0 (the screen).
This can easily be fixed, by creating an eigth bitmap, changing the code to
for x = 5 to 8
create bitmap x,150,50
copy bitmap 11,x
next x
Now number seven is a perfect copy of number 11, however 8 is now a useless copy of bitmap zero (but i dont need it so i dont care lol).
I hope that all made some sort of sense lol. If it is a bug, it can easily be worked around as shown above, but still should be brung to the attention of the db team.
...::::ShockForge::::...