mirror of
https://github.com/photonstorm/phaser
synced 2025-02-17 06:28:30 +00:00
Actually round the value.
This commit is contained in:
parent
46e9dbd05a
commit
a8886a60d3
1 changed files with 1 additions and 1 deletions
|
@ -56,7 +56,7 @@ var BlendMode = {
|
|||
value = BlendModes[value];
|
||||
}
|
||||
|
||||
value | 0;
|
||||
value |= 0;
|
||||
|
||||
if (value >= 0)
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue