Skip to content

Commit 864ad02

Browse files
authored
Quickfix: asset size has exceeded 4x30 MB, so now there are 5 chunks. (#17334)
1 parent 53d9452 commit 864ad02

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

pkg/emscripten/libretro/libretro.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -188,11 +188,12 @@ function zipfsInit() {
188188
let buffer = new ArrayBuffer(256*1024*1024);
189189
let bufferView = new Uint8Array(buffer);
190190
let idx = 0;
191-
// bundle should be in four parts (this can be changed later)
191+
// bundle should be in five parts (this can be changed later)
192192
Promise.all([fetch("assets/frontend/bundle.zip.aa"),
193193
fetch("assets/frontend/bundle.zip.ab"),
194194
fetch("assets/frontend/bundle.zip.ac"),
195-
fetch("assets/frontend/bundle.zip.ad")
195+
fetch("assets/frontend/bundle.zip.ad"),
196+
fetch("assets/frontend/bundle.zip.ae")
196197
]).then(function(resps) {
197198
Promise.all(resps.map((r) => r.arrayBuffer())).then(function(buffers) {
198199
for (let buf of buffers) {

0 commit comments

Comments
 (0)