Skip to content

Commit

Permalink
seabios no-debug build
Browse files Browse the repository at this point in the history
  • Loading branch information
copy committed Nov 26, 2013
1 parent aee2555 commit 7cb5120
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 1 deletion.
Binary file added bios/seabios-debug.bin
Binary file not shown.
Binary file modified bios/seabios.bin
Binary file not shown.
13 changes: 12 additions & 1 deletion src/browser/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,18 @@ function dump_file(ab, name)
$("lock_mouse").blur();
};

load_file("bios/seabios.bin", function(img)
var biosfile;

if(DEBUG)
{
biosfile = "seabios-debug.bin";
}
else
{
biosfile = "seabios.bin";
}

load_file("bios/" + biosfile, function(img)
{
settings.bios = img;
});
Expand Down

0 comments on commit 7cb5120

Please sign in to comment.