Skip to content

Commit

Permalink
Add missing semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
marco-c committed Sep 23, 2014
1 parent b831401 commit 5150e7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion midp/gfx.js
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@
var ctx = createContext2d(width, height);
setImageData(imageData, width, height, ctx);

var ctxImageData = ctx.createImageData(width, height)
var ctxImageData = ctx.createImageData(width, height);
var pixels = new Uint32Array(ctxImageData.data.buffer);

var color = swapRB(argb);
Expand Down

0 comments on commit 5150e7a

Please sign in to comment.