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
30e48fd5
Commit
30e48fd5
authored
Nov 29, 2023
by
bitten2up
Committed by
sphere
Nov 29, 2023
Browse files
Options
Downloads
Patches
Plain Diff
I_SetSongTrack(int) should be I_SetSongTrack(INT32)
parent
f644877b
Branches
Branches containing commit
Tags
Tags containing commit
1 merge request
!2213
I_SetSongTrack(int) should be I_SetSongTrack(INT32)
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/dummy/i_sound.c
+1
-1
1 addition, 1 deletion
src/dummy/i_sound.c
src/sdl/mixer_sound.c
+1
-1
1 addition, 1 deletion
src/sdl/mixer_sound.c
src/sdl/sdl_sound.c
+1
-1
1 addition, 1 deletion
src/sdl/sdl_sound.c
with
3 additions
and
3 deletions
src/dummy/i_sound.c
+
1
−
1
View file @
30e48fd5
...
@@ -164,7 +164,7 @@ void I_SetMusicVolume(UINT8 volume)
...
@@ -164,7 +164,7 @@ void I_SetMusicVolume(UINT8 volume)
(
void
)
volume
;
(
void
)
volume
;
}
}
boolean
I_SetSongTrack
(
int
track
)
boolean
I_SetSongTrack
(
INT32
track
)
{
{
(
void
)
track
;
(
void
)
track
;
return
false
;
return
false
;
...
...
This diff is collapsed.
Click to expand it.
src/sdl/mixer_sound.c
+
1
−
1
View file @
30e48fd5
...
@@ -1441,7 +1441,7 @@ void I_SetMusicVolume(UINT8 volume)
...
@@ -1441,7 +1441,7 @@ void I_SetMusicVolume(UINT8 volume)
Mix_VolumeMusic
(
get_real_volume
(
music_volume
));
Mix_VolumeMusic
(
get_real_volume
(
music_volume
));
}
}
boolean
I_SetSongTrack
(
int
track
)
boolean
I_SetSongTrack
(
INT32
track
)
{
{
#ifdef HAVE_GME
#ifdef HAVE_GME
// If the specified track is within the number of tracks playing, then change it
// If the specified track is within the number of tracks playing, then change it
...
...
This diff is collapsed.
Click to expand it.
src/sdl/sdl_sound.c
+
1
−
1
View file @
30e48fd5
...
@@ -1471,7 +1471,7 @@ void I_SetMusicVolume(UINT8 volume)
...
@@ -1471,7 +1471,7 @@ void I_SetMusicVolume(UINT8 volume)
(
void
)
volume
;
(
void
)
volume
;
}
}
boolean
I_SetSongTrack
(
int
track
)
boolean
I_SetSongTrack
(
INT32
track
)
{
{
(
void
)
track
;
(
void
)
track
;
return
false
;
return
false
;
...
...
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