Skip to content

Commit

Permalink
Coding style: consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
cronvel committed Jan 22, 2018
1 parent a616bef commit ebc065b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ logs
results
build
.grunt
sample/__issue.js

node_modules

Expand Down
4 changes: 2 additions & 2 deletions lib/ScreenBufferHD.js
Original file line number Diff line number Diff line change
Expand Up @@ -342,9 +342,9 @@ ScreenBufferHD.prototype.blitterCellBlendingIterator = function blitterCellBlend



function alphaBlend( src , dest , alpha , fn )
function alphaBlend( src , dst , alpha , fn )
{
return Math.round( fn( src , dest ) * alpha + dest * ( 1 - alpha ) ) ;
return Math.round( fn( src , dst ) * alpha + dst * ( 1 - alpha ) ) ;
}


Expand Down

0 comments on commit ebc065b

Please sign in to comment.