mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2024-11-18 10:31:42 +00:00
I_GetMusicLength declarations for other interfaces
This commit is contained in:
parent
c6035f5956
commit
6b35857ed1
5 changed files with 31 additions and 2 deletions
|
@ -158,6 +158,11 @@ boolean I_SetSongSpeed(float speed)
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
UINT32 I_GetMusicLength(void)
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
boolean I_SetMusicPosition(UINT32 position)
|
boolean I_SetMusicPosition(UINT32 position)
|
||||||
{
|
{
|
||||||
(void)position;
|
(void)position;
|
||||||
|
|
|
@ -551,6 +551,11 @@ boolean I_SetSongSpeed(float speed)
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
UINT32 I_GetMusicLength(void)
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
boolean I_SetMusicPosition(UINT32 position)
|
boolean I_SetMusicPosition(UINT32 position)
|
||||||
{
|
{
|
||||||
(void)position;
|
(void)position;
|
||||||
|
@ -559,7 +564,7 @@ boolean I_SetMusicPosition(UINT32 position)
|
||||||
|
|
||||||
UINT32 I_GetMusicPosition(void)
|
UINT32 I_GetMusicPosition(void)
|
||||||
{
|
{
|
||||||
return 0.;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
boolean I_MIDIPlaying(void)
|
boolean I_MIDIPlaying(void)
|
||||||
|
|
|
@ -146,6 +146,11 @@ boolean I_SetSongTrack(int track)
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
UINT32 I_GetMusicLength(void)
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
boolean I_SetMusicPosition(UINT32 position)
|
boolean I_SetMusicPosition(UINT32 position)
|
||||||
{
|
{
|
||||||
(void)position;
|
(void)position;
|
||||||
|
|
|
@ -1989,6 +1989,11 @@ boolean I_SetSongSpeed(float speed)
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
UINT32 I_GetMusicLength(void)
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
boolean I_SetMusicPosition(UINT32 position)
|
boolean I_SetMusicPosition(UINT32 position)
|
||||||
{
|
{
|
||||||
(void)position;
|
(void)position;
|
||||||
|
|
|
@ -774,6 +774,15 @@ boolean I_SetSongSpeed(float speed)
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
UINT32 I_GetMusicLength()
|
||||||
|
{
|
||||||
|
if (midimode)
|
||||||
|
return 0;
|
||||||
|
UINT32 length;
|
||||||
|
e = FMOD_Sound_GetLength(music_stream, length, FMOD_TIMEUNIT_MS);
|
||||||
|
return length;
|
||||||
|
}
|
||||||
|
|
||||||
boolean I_SetMusicPosition(UINT32 position)
|
boolean I_SetMusicPosition(UINT32 position)
|
||||||
{
|
{
|
||||||
if(midimode)
|
if(midimode)
|
||||||
|
|
Loading…
Reference in a new issue