diff --git a/public/audio/bgm/title.mp3 b/public/audio/bgm/title.mp3 index 86d4be0da35..8ad451a52a9 100644 Binary files a/public/audio/bgm/title.mp3 and b/public/audio/bgm/title.mp3 differ diff --git a/src/battle-scene.ts b/src/battle-scene.ts index f0aeb68e277..42bc76ff535 100644 --- a/src/battle-scene.ts +++ b/src/battle-scene.ts @@ -2084,8 +2084,11 @@ export default class BattleScene extends SceneBase { return sound; } + /** The loop point of any given battle, mystery encounter, or title track, read as seconds and milliseconds. */ getBgmLoopPoint(bgmName: string): number { switch (bgmName) { + case "title": //Firel PokéRogue Title + return 46.500; case "battle_kanto_champion": //B2W2 Kanto Champion Battle return 13.950; case "battle_johto_champion": //B2W2 Johto Champion Battle diff --git a/src/field/arena.ts b/src/field/arena.ts index 71966b97775..deeb261a491 100644 --- a/src/field/arena.ts +++ b/src/field/arena.ts @@ -695,6 +695,7 @@ export class Arena { globalScene.loadBgm(this.bgm); } + /** The loop point of any given biome track, read as seconds and milliseconds. */ getBgmLoopPoint(): number { switch (this.biomeType) { case Biome.TOWN: