CARDSetIconAnim

C Specification

#include <revolution/card.h>
#define CARDSetIconAnim(stat, f) \
((stat)->bannerFormat = (u8) (((stat)->bannerFormat &~CARD_STAT_ANIM_MASK  )|(f)))

Arguments

stat Pointer to a CARDStat structure.
f Animation pattern.
CARD_STAT_ANIM_LOOP will repeat from the beginning (123123123...).
CARD_STAT_ANIM_BOUNCE will loop back and forth (123212321...).

Return Values

None.

Description

This function sets the animation pattern of the icons to the CARDStat structure.

Note: This function is provided for debugging. Do not use in programs.

See Also

Revision History

03/01/2006 Initial version.