Skip to content

Commit be3d903

Browse files
committed
Use an optional usize for the background music vs a c_int
1 parent 4df5eae commit be3d903

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

zsrc/audio.zig

+8-6
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,14 @@ const hlp = @import("helper.zig");
2727

2828
const BGM_FADE_DURATION = 800;
2929

30-
var nowBgmId: c_int = -1;
30+
var nowBgmId: ?usize = null;
3131

32-
pub fn playBgm(id: c_int) void {
33-
if (nowBgmId == id) {
32+
pub fn playBgm(id: usize) void {
33+
if (id == nowBgmId) {
3434
return;
3535
}
36-
if (nowBgmId == -1) {
36+
37+
if (nowBgmId == null) {
3738
_ = c.Mix_PlayMusic(res.bgms[@intCast(id)], -1);
3839
} else {
3940
_ = c.Mix_FadeInMusic(res.bgms[@intCast(id)], -1, BGM_FADE_DURATION);
@@ -44,11 +45,12 @@ pub fn playBgm(id: c_int) void {
4445

4546
pub fn stopBgm() void {
4647
_ = c.Mix_FadeOutMusic(BGM_FADE_DURATION);
47-
nowBgmId = -1;
48+
nowBgmId = null;
4849
}
4950

5051
pub fn randomBgm() void {
51-
playBgm(hlp.randInt(1, res.bgmsPath.len - 1));
52+
const r: usize = @intCast(hlp.randInt(1, res.bgmsPath.len - 1));
53+
playBgm(r);
5254
}
5355

5456
pub fn playAudio(id: usize) void {

0 commit comments

Comments
 (0)