spidey-decomp/ps2redbook.cpp
2024-05-29 18:13:06 +02:00

39 lines
405 B
C++

#include "ps2redbook.h"
// @TODO
void Redbook_XAStop(void)
{
}
// @TODO
int Redbook_XAPlay(int, int, int)
{
return 0x1235959;
}
static bool gXAAllowed;
// @NotOk
// Globals
void Redbook_XAAllow(bool allowed)
{
gXAAllowed = allowed;
}
// @TODO
void Redbook_XAReset(void)
{
}
// @TODO
void Redbook_XAInit(void)
{}
// @Ok
void Redbook_XAInitAtStart(void)
{
Redbook_XAReset();
Redbook_XAInit();
}