Skip to content

Commit

Permalink
let always be the strong type checking comparison
Browse files Browse the repository at this point in the history
  • Loading branch information
NickPepper committed Apr 14, 2016
1 parent 2f4d241 commit b80d929
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/hello_world.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ function main() {

(function() {
var mass = 0,
isDynamic = mass !== 0,
isDynamic = (mass !== 0),
localInertia = new Ammo.btVector3(0, 0, 0);

if (isDynamic)
Expand All @@ -39,7 +39,7 @@ function main() {
startTransform.setIdentity();

var mass = 1,
isDynamic = (mass != 0),
isDynamic = (mass !== 0),
localInertia = new Ammo.btVector3(0, 0, 0);

if (isDynamic)
Expand Down

0 comments on commit b80d929

Please sign in to comment.