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

Win32 boolean fixes

parent 894ee02f
No related branches found
No related tags found
No related merge requests found
......@@ -492,15 +492,15 @@ musictype_t I_SongType(void)
boolean I_SongPlaying(void)
{
return (boolean)music_stream;
return (music_stream != NULL);
}
boolean I_SongPaused(void)
{
boolean fmpaused = false;
FMOD_BOOL fmpaused = false;
if (music_stream)
FMOD_Channel_GetPaused(music_channel, &fmpaused);
return fmpaused;
return (boolean)fmpaused;
}
/// ------------------------
......
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