mirror of
https://github.com/copy/v86.git
synced 2025-12-31 04:23:15 +00:00
Report BIOS loading correctly
This commit is contained in:
parent
2e2797fde3
commit
eb36300471
2 changed files with 8 additions and 2 deletions
|
|
@ -777,6 +777,12 @@
|
|||
log: log,
|
||||
};
|
||||
|
||||
if(!settings.bios || !settings.vga_bios)
|
||||
{
|
||||
log("The BIOS has not been loaded - reload the page to try again.");
|
||||
return;
|
||||
}
|
||||
|
||||
if(typeof performance === "object" && performance.now)
|
||||
{
|
||||
var offset = Date.now() - performance.now();
|
||||
|
|
|
|||
4
v86.css
4
v86.css
|
|
@ -12,8 +12,8 @@
|
|||
color: #fff;
|
||||
}
|
||||
#log {
|
||||
max-height: 350px;
|
||||
width: 350px;
|
||||
height: 100px;
|
||||
width: 550px;
|
||||
}
|
||||
#serial {
|
||||
margin: 0px;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue