mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-01-20 08:20:52 +00:00
I_GetMusicLoopPoint and I_SetMusicLoopPoint for other targets
This commit is contained in:
parent
fdd1af62a8
commit
dc2c530d42
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…
Reference in a new issue