SND_GetPlayerLocalVariable

C Specification

#include <nitro/snd.h>
s16 SND_GetPlayerLocalVariable( int playerNo, int varNo );

Arguments

playerNo The Player number. Takes values in the range of 0 to 15.
varNo The variable number. Takes values in the range of 0 to 15.

Return Values

The value of the Player local variable.

Description

This function gets the value of the sequence local variable.

The sequence local variable's initial value is -1. The variable is initialized when the system is initialized and also when the Player starts.

This function is carried out asynchronously with respect to ARM7 command functions. To acquire synchronization, you must use a function such as the SND_IsFinishedCommandTag function to confirm that the processing of ARM7 commands has completed.

See Also

SND_IsFinishedCommandTag

Revision History

07/20/2004 Initial version