|
From: jchristof (<jch...@gm...> - 2007-10-07 20:31:39
|
I'm working on my z80 debugging skills, but I'm having trouble figuring out why the first putsprite in this example shows the image immediately on screen, but the second putsprite (inside the while loop) doesn't ever show the sprite:
[code]main()
{
putsprite(spr_or, 0, 0, frame0);
while(1)
{
putsprite(spr_or, 10, 10, frame1);
}
}[/code]
|