|
From: alvin (<alv...@ho...> - 2007-10-13 19:10:58
|
>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]
The only thing that comes to mind is if "frame1" is correct. Does it work if "frame1" is replaced by "frame0"?
|