Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
SRB2
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
STJr
SRB2
Commits
b7199610
Commit
b7199610
authored
Sep 18, 2018
by
Marco Z
Browse files
Options
Downloads
Patches
Plain Diff
MusicPlus core: NOMIXER=1 compile fix
parent
1a935eab
Branches
Branches containing commit
Tags
Tags containing commit
2 merge requests
!488
Merge in next and don't billboard papersprites in GL
,
!447
MusicPlus core: Song length, positioning, and fading features with Linedef Exec and Lua support
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/sdl/sdl_sound.c
+2
-2
2 additions, 2 deletions
src/sdl/sdl_sound.c
with
2 additions
and
2 deletions
src/sdl/sdl_sound.c
+
2
−
2
View file @
b7199610
...
...
@@ -1480,7 +1480,7 @@ void I_StopFadingSong(void)
{
}
boolean
I_FadeSongFromVolume
(
UINT8
target_volume
,
UINT8
source_volume
,
UINT32
ms
,
void
(
*
callback
)(
void
))
;
boolean
I_FadeSongFromVolume
(
UINT8
target_volume
,
UINT8
source_volume
,
UINT32
ms
,
void
(
*
callback
)(
void
))
{
(
void
)
target_volume
;
(
void
)
source_volume
;
...
...
@@ -1488,7 +1488,7 @@ boolean I_FadeSongFromVolume(UINT8 target_volume, UINT8 source_volume, UINT32 ms
return
false
;
}
boolean
I_FadeSong
(
UINT8
target_volume
,
UINT32
ms
,
void
(
*
callback
)(
void
))
;
boolean
I_FadeSong
(
UINT8
target_volume
,
UINT32
ms
,
void
(
*
callback
)(
void
))
{
(
void
)
target_volume
;
(
void
)
ms
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment