Redbook_XAAllow

This commit is contained in:
krystalgamer 2024-05-23 19:51:28 +02:00
parent 8398aa54cd
commit 4ad55979ab
2 changed files with 10 additions and 0 deletions

View File

@ -11,3 +11,12 @@ int Redbook_XAPlay(int, int, int)
{ {
return 0x1235959; return 0x1235959;
} }
static bool gXAAllowed;
// @NotOk
// Globals
void Redbook_XAAllow(bool allowed)
{
gXAAllowed = allowed;
}

View File

@ -8,5 +8,6 @@
EXPORT void Redbook_XAStop(void); EXPORT void Redbook_XAStop(void);
EXPORT int Redbook_XAPlay(int, int, int); EXPORT int Redbook_XAPlay(int, int, int);
EXPORT void Redbook_XAAllow(bool);
#endif #endif