mp3 > wav

This commit is contained in:
Dennis Postma 2025-02-06 22:01:16 +01:00
parent db52bcfff3
commit ccb64fc048
3 changed files with 2 additions and 2 deletions

Binary file not shown.

Binary file not shown.

View File

@ -68,9 +68,9 @@ watch(
() => props.mapCharacter.isMoving,
(newValue) => {
if (newValue) {
playSound('/assets/sounds/walk.mp3', true, true)
playSound('/assets/sounds/walk.wav', true, true)
} else {
stopSound('/assets/sounds/walk.mp3')
stopSound('/assets/sounds/walk.wav')
}
}
)