Skip to content

Commit

Permalink
Convert ogg to wav for safari
Browse files Browse the repository at this point in the history
  • Loading branch information
tillvit committed Nov 2, 2024
1 parent 63da95a commit f37cd14
Show file tree
Hide file tree
Showing 11 changed files with 6 additions and 6 deletions.
Binary file removed app/assets/sound/assist_tick.ogg
Binary file not shown.
Binary file added app/assets/sound/assist_tick.wav
Binary file not shown.
Binary file removed app/assets/sound/metronome_high.ogg
Binary file not shown.
Binary file added app/assets/sound/metronome_high.wav
Binary file not shown.
Binary file removed app/assets/sound/metronome_low.ogg
Binary file not shown.
Binary file added app/assets/sound/metronome_low.wav
Binary file not shown.
Binary file removed app/assets/sound/mine.ogg
Binary file not shown.
Binary file added app/assets/sound/mine.wav
Binary file not shown.
Binary file removed app/assets/sound/tick.ogg
Binary file not shown.
8 changes: 4 additions & 4 deletions app/src/chart/ChartManager.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import { errors } from "file-system-access/lib/util"
import { Howl } from "howler/dist/howler.core.min.js"
import { BitmapText } from "pixi.js"
import assistTick from "../../assets/sound/assist_tick.ogg"
import metronomeHigh from "../../assets/sound/metronome_high.ogg"
import metronomeLow from "../../assets/sound/metronome_low.ogg"
import mine from "../../assets/sound/mine.ogg"
import assistTick from "../../assets/sound/assist_tick.wav"
import metronomeHigh from "../../assets/sound/metronome_high.wav"
import metronomeLow from "../../assets/sound/metronome_low.wav"
import mine from "../../assets/sound/mine.wav"
import { App } from "../App"
import { AUDIO_EXT } from "../data/FileData"
import { IS_OSX, KEYBIND_DATA } from "../data/KeybindData"
Expand Down
4 changes: 2 additions & 2 deletions app/src/gui/window/OffsetWindow.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import { lerp, median, stdDev } from "../../util/Math"
import { Options } from "../../util/Options"
import { Window } from "./Window"

import metronomeHigh from "../../../assets/sound/metronome_high.ogg"
import metronomeLow from "../../../assets/sound/metronome_low.ogg"
import metronomeHigh from "../../../assets/sound/metronome_high.wav"
import metronomeLow from "../../../assets/sound/metronome_low.wav"

interface TickLine {
time: number
Expand Down

0 comments on commit f37cd14

Please sign in to comment.