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

MP Core Win32: Fix FadeSong unused callback param (buildbots)

parent 2644180b
Branches
No related tags found
2 merge requests!488Merge in next and don't billboard papersprites in GL,!447MusicPlus core: Song length, positioning, and fading features with Linedef Exec and Lua support
...@@ -927,6 +927,7 @@ boolean I_FadeSongFromVolume(UINT8 target_volume, UINT8 source_volume, UINT32 ms ...@@ -927,6 +927,7 @@ boolean I_FadeSongFromVolume(UINT8 target_volume, UINT8 source_volume, UINT32 ms
(void)target_volume; (void)target_volume;
(void)source_volume; (void)source_volume;
(void)ms; (void)ms;
(void)callback;
return false; return false;
} }
...@@ -934,6 +935,7 @@ boolean I_FadeSong(UINT8 target_volume, UINT32 ms, void (*callback)(void)) ...@@ -934,6 +935,7 @@ boolean I_FadeSong(UINT8 target_volume, UINT32 ms, void (*callback)(void))
{ {
(void)target_volume; (void)target_volume;
(void)ms; (void)ms;
(void)callback;
return false; return false;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment