We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 53d9452 commit 864ad02Copy full SHA for 864ad02
1 file changed
pkg/emscripten/libretro/libretro.js
@@ -188,11 +188,12 @@ function zipfsInit() {
188
let buffer = new ArrayBuffer(256*1024*1024);
189
let bufferView = new Uint8Array(buffer);
190
let idx = 0;
191
- // bundle should be in four parts (this can be changed later)
+ // bundle should be in five parts (this can be changed later)
192
Promise.all([fetch("assets/frontend/bundle.zip.aa"),
193
fetch("assets/frontend/bundle.zip.ab"),
194
fetch("assets/frontend/bundle.zip.ac"),
195
- fetch("assets/frontend/bundle.zip.ad")
+ fetch("assets/frontend/bundle.zip.ad"),
196
+ fetch("assets/frontend/bundle.zip.ae")
197
]).then(function(resps) {
198
Promise.all(resps.map((r) => r.arrayBuffer())).then(function(buffers) {
199
for (let buf of buffers) {
0 commit comments