Skip to content

Commit

Permalink
Drive bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt Bell committed Apr 27, 2012
1 parent c95e5fb commit ac1f5e7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions lib/HMD2043.js
Original file line number Diff line number Diff line change
Expand Up @@ -132,12 +132,12 @@

// READ_SECTORS
case 0x10:
accessDisk(true, callback);
accessDisk.call(this, true, callback);
return;

// WRITE_SECTORS
case 0x11:
accessDisk(false, callback);
accessDisk.call(this, false, callback);
return;

// QUERY_MEDIA_QUALITY
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "dcpu16",
"description": "An assembler and a vm for the DCPU-16 CPU from Notch's new game, 0x10c.",
"version": "0.2.18",
"version": "0.2.18-1",
"engines": {
"node": "*"
},
Expand Down

0 comments on commit ac1f5e7

Please sign in to comment.