Skip to content
Snippets Groups Projects
Commit 3c15ec66 authored by Paul Kaplan's avatar Paul Kaplan
Browse files

Fix uint16 sound loading error

parent 0d9942e6
No related branches found
No related tags found
No related merge requests found
......@@ -19,12 +19,12 @@ export default [{
id: '83a9787d4cb6f3b7632b4ddfebf74367',
assetType: 'Sound',
dataFormat: 'WAV',
data: new Uint16Array(popWav)
data: new Uint8Array(popWav)
}, {
id: '83c36d806dc92327b9e7049a565c6bff',
assetType: 'Sound',
dataFormat: 'WAV',
data: new Uint16Array(meowWav)
data: new Uint8Array(meowWav)
}, {
id: '739b5e2a2435f6e1ec2993791b423146',
assetType: 'ImageBitmap',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment