mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-01-26 16:36:05 +00:00
I_GetMusicLoopPoint and I_SetMusicLoopPoint for other targets
This commit is contained in:
parent
1629a8cfd0
commit
9d835614a9
5 changed files with 55 additions and 0 deletions
|
|
@ -163,6 +163,17 @@ UINT32 I_GetMusicLength(void)
|
|||
return 0;
|
||||
}
|
||||
|
||||
boolean I_SetMusicLoopPoint(UINT32 looppoint)
|
||||
{
|
||||
(void)looppoint;
|
||||
return false;
|
||||
}
|
||||
|
||||
UINT32 I_GetMusicLoopPoint(void)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
boolean I_SetMusicPosition(UINT32 position)
|
||||
{
|
||||
(void)position;
|
||||
|
|
|
|||
|
|
@ -556,6 +556,17 @@ UINT32 I_GetMusicLength(void)
|
|||
return 0;
|
||||
}
|
||||
|
||||
boolean I_SetMusicLoopPoint(UINT32 looppoint)
|
||||
{
|
||||
(void)looppoint;
|
||||
return false;
|
||||
}
|
||||
|
||||
UINT32 I_GetMusicLoopPoint(void)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
boolean I_SetMusicPosition(UINT32 position)
|
||||
{
|
||||
(void)position;
|
||||
|
|
|
|||
|
|
@ -151,6 +151,17 @@ UINT32 I_GetMusicLength(void)
|
|||
return 0;
|
||||
}
|
||||
|
||||
boolean I_SetMusicLoopPoint(UINT32 looppoint)
|
||||
{
|
||||
(void)looppoint;
|
||||
return false;
|
||||
}
|
||||
|
||||
UINT32 I_GetMusicLoopPoint(void)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
boolean I_SetMusicPosition(UINT32 position)
|
||||
{
|
||||
(void)position;
|
||||
|
|
|
|||
|
|
@ -1993,6 +1993,17 @@ UINT32 I_GetMusicLength(void)
|
|||
return 0;
|
||||
}
|
||||
|
||||
boolean I_SetMusicLoopPoint(UINT32 looppoint)
|
||||
{
|
||||
(void)looppoint;
|
||||
return false;
|
||||
}
|
||||
|
||||
UINT32 I_GetMusicLoopPoint(void)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
boolean I_SetMusicPosition(UINT32 position)
|
||||
{
|
||||
(void)position;
|
||||
|
|
|
|||
|
|
@ -783,6 +783,17 @@ UINT32 I_GetMusicLength()
|
|||
return length;
|
||||
}
|
||||
|
||||
boolean I_SetMusicLoopPoint(UINT32 looppoint)
|
||||
{
|
||||
(void)looppoint;
|
||||
return false;
|
||||
}
|
||||
|
||||
UINT32 I_GetMusicLoopPoint(void)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
boolean I_SetMusicPosition(UINT32 position)
|
||||
{
|
||||
if(midimode)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue