fix: RAM music should loop as they should now

This commit is contained in:
minjaesong
2024-04-06 00:22:03 +09:00
parent 7416f15def
commit 3ef3f3f653
11 changed files with 180 additions and 51 deletions

View File

@@ -42,7 +42,7 @@ class TerrarumAudioMixerTrack(
acc or (c shl (5*i))
}
var currentTrack: MusicContainer? = null
var currentTrack: AudioBank? = null
set(value) {
field = if (value == null)
null
@@ -50,7 +50,7 @@ class TerrarumAudioMixerTrack(
musicCache.getOrPut(value)
}
var nextTrack: MusicContainer? = null
var nextTrack: AudioBank? = null
set(value) {
field = if (value == null)
null