mirror of
https://github.com/sigmasternchen/Wish
synced 2025-03-14 23:28:53 +00:00
fix fix for iceweasel
This commit is contained in:
parent
4b0d7fd1ca
commit
4a3f033087
1 changed files with 3 additions and 3 deletions
6
BIOS.js
6
BIOS.js
|
@ -37,14 +37,14 @@ BIOS.main = function() {
|
|||
Emulator.output("\033[31msystem halt\033[0m");
|
||||
console.log("BIOS: remove all event handlers");
|
||||
Emulator.interrupts = new Array();
|
||||
Emulator.unregisterTimer(this.tickid);
|
||||
Emulator.unregisterTimer(BIOS.tickid);
|
||||
return;
|
||||
}
|
||||
if (BIOSs.hdds.length > 1) {
|
||||
Emulator.output("\nPlease select booting device by pressing the device nr. ");
|
||||
this.state = 0;
|
||||
BIOS.state = 0;
|
||||
} else {
|
||||
this.state = 1;
|
||||
BIOS.state = 1;
|
||||
}
|
||||
}
|
||||
BIOS.key = function(keycode) {
|
||||
|
|
Loading…
Reference in a new issue