Although VSprites are managed for you by the GELs system there are some underlying limitations which could cause the system to run out of VSprites. As the system goes through the GEL list during drawglist(), whenever it finds a true VSprite, it goes through the following procedure. If there is a Simple Sprite available (after the reserved sprites and preceding VSprites are accounted for), Copper instructions are added that will load the sprite hardware with this VSprite's data at the right point on the screen. It may need to add a Copper instruction sequence to load the display's colors associated with the sprite as well. There are only 8 real sprite DMA channels. The system will run out of hardware sprites if it is asked to display more than eight VSprites on one scan line. This limit goes down to four when the VSprites have different sprcolor pointers. during the time that there is a conflict, the vsprites that could not be put into Simple Sprites will disappear. They will reappear when (as the VSprites are moved about the screen) circumstances permit. These problems can be alleviated by taking some precautions: * Minimize the number of VSprites to appear on a single horizontal line. * If colors for some Virtual Sprites are the same, make sure that the pointer for each of the vsprite structures for these virtual sprites points to the same memory location, rather than to a duplicate set of colors elsewhere in memory. The system will know to map these into Sprite pairs. If a VSprite's sprcolors are set to null, the vsprite will appear in the viewport's colormap colors. the system will display the vsprite in any one of a set of four different possible color groupings as indicated in the simple sprite section above. If sprcolors points to a color set, the system will jam sprcolors into the display hardware (via the Copper list), effectively overriding those colormap registers. the values in the colormap are not overwritten, but anything in the background display that used to appear in the ColorMap colors will appear in SprColors colors.