change judge_offset -> audio_offset

This commit is contained in:
Anthony Samms
2025-10-24 11:08:24 -04:00
parent 2fb4779b91
commit 6b39007a3e
2 changed files with 2 additions and 2 deletions

View File

@@ -163,7 +163,7 @@ class GameScreen:
con.commit()
def start_song(self, current_time):
if (self.current_ms >= self.tja.metadata.offset*1000 + self.start_delay - global_data.config["general"]["judge_offset"]) and not self.song_started:
if (self.current_ms >= self.tja.metadata.offset*1000 + self.start_delay - global_data.config["general"]["audio_offset"]) and not self.song_started:
if self.song_music is not None:
audio.play_music_stream(self.song_music, 'music')
print(f"Song started at {self.current_ms}")