mirror of
https://github.com/libretro/RetroArch
synced 2025-02-20 15:40:44 +00:00
Quickfix: asset size has exceeded 4x30 MB, so now there are 5 chunks. (#17334)
This commit is contained in:
parent
53d9452439
commit
864ad02177
@ -188,11 +188,12 @@ function zipfsInit() {
|
||||
let buffer = new ArrayBuffer(256*1024*1024);
|
||||
let bufferView = new Uint8Array(buffer);
|
||||
let idx = 0;
|
||||
// bundle should be in four parts (this can be changed later)
|
||||
// bundle should be in five parts (this can be changed later)
|
||||
Promise.all([fetch("assets/frontend/bundle.zip.aa"),
|
||||
fetch("assets/frontend/bundle.zip.ab"),
|
||||
fetch("assets/frontend/bundle.zip.ac"),
|
||||
fetch("assets/frontend/bundle.zip.ad")
|
||||
fetch("assets/frontend/bundle.zip.ad"),
|
||||
fetch("assets/frontend/bundle.zip.ae")
|
||||
]).then(function(resps) {
|
||||
Promise.all(resps.map((r) => r.arrayBuffer())).then(function(buffers) {
|
||||
for (let buf of buffers) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user