Add message for when chromium hard reload bug breaks things

This commit is contained in:
2026-03-21 23:16:16 +00:00
parent a2f06c977e
commit aa9c18346d

14
emu.js
View File

@@ -347,6 +347,16 @@ class Emulator {
}
window.addEventListener('DOMContentLoaded', () => {
document.getElementById('output').innerText = '';
window.emu = new Emulator();
const output = document.getElementById('output');
output.innerText = '';
if (!self.crossOriginIsolated) {
output.innerText = "Yeah so there's this thing where Chromium ends "
+ "up ignoring COOP/COEP\nheaders after a hard reload "
+ "sometimes, and I haven't been able to\nfigure out how to "
+ "work around it yet. If you just wait a little while\nand "
+ "then reload normally then hopefully it should work haha";
} else {
window.emu = new Emulator();
}
});