remove "done" folders, label "bs/droneenter, bs/dronelook, and bs/dronevanish files and functions"

This commit is contained in:
Banjo Kazooie
2023-01-21 20:13:03 -06:00
parent 0ecaa54b4a
commit c004632915
190 changed files with 645 additions and 644 deletions

View File

@@ -0,0 +1,17 @@
#include <ultra64.h>
#include "functions.h"
#include "variables.h"
void alCSPSetTempo(ALCSPlayer *seqp, s32 tempo)
{
ALEvent evt;
evt.type = AL_SEQP_META_EVT;
evt.msg.tempo.status = AL_MIDI_Meta;
evt.msg.tempo.type = AL_MIDI_META_TEMPO;
evt.msg.tempo.byte1 = (tempo & 0xff0000)>>16;
evt.msg.tempo.byte2 = (tempo & 0xff00)>>8;
evt.msg.tempo.byte3 = tempo & 0xff;
alEvtqPostEvent(&seqp->evtq, &evt, 0);
}