Skip to content

Commit

Permalink
Include filename in failure message. Add reminder to Readme.md.
Browse files Browse the repository at this point in the history
  • Loading branch information
cpressey committed Nov 23, 2013
1 parent 352dc7d commit 7b1eae7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ How to build, run and embed?
- If you want a compressed and fast (ie, with debug code removed) version, you
need Closure Compiler.
Set the path to `compiler.jar` in the Makefile and run `make v86_all.js`.
- ROM and disk images are loaded via AJAX, so if you want to try out `index.html`
locally, make sure to serve it from a local webserver.
- For more details on how to customize the behaviour and interface, see [docs/adapters.md](docs/adapters.md).


Expand Down
2 changes: 1 addition & 1 deletion src/browser/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ function dump_file(ab, name)
{
if(http.status !== 200)
{
log("Loading the image failed");
log("Loading the image `" + filename + "` failed");
}
else if(http.response)
{
Expand Down

0 comments on commit 7b1eae7

Please sign in to comment.