Skip to content
Snippets Groups Projects
Commit d88b9239 authored by Marco Z's avatar Marco Z
Browse files

Other interfaces for I_MusicType

parent bd1eece7
No related branches found
No related tags found
No related merge requests found
......@@ -89,6 +89,11 @@ boolean I_MusicPaused(void)
return false;
}
musictype_t I_MusicType(void)
{
return MU_NONE;
}
//
// MIDI I/O
//
......@@ -172,4 +177,4 @@ boolean I_SetMusicPosition(UINT32 position)
UINT32 I_GetMusicPosition(void)
{
return 0;
}
\ No newline at end of file
}
......@@ -581,3 +581,8 @@ boolean I_MusicPaused(void)
{
return false;
}
musictype_t I_MusicType(void)
{
return MU_NONE;
}
......@@ -176,3 +176,8 @@ boolean I_MusicPaused(void)
{
return false;
}
musictype_t I_MusicType(void)
{
return MU_NONE;
}
......@@ -1665,6 +1665,11 @@ boolean I_MusicPaused(void)
return Mix_PausedMusic();
}
musictype_t I_MusicType(void)
{
return MU_NONE;
}
void I_UnRegisterSong(INT32 handle)
{
#ifdef HAVE_MIXER
......
......@@ -486,6 +486,11 @@ boolean I_MusicPaused(void)
return fmpaused;
}
musictype_t I_MusicType(void)
{
return MU_NONE;
}
void I_InitDigMusic(void)
{
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment