mirror of
https://github.com/photonstorm/phaser
synced 2024-11-10 07:04:31 +00:00
Merge pull request #6816 from jacklehamster/master
Add PR to fix null pointer exception.
This commit is contained in:
commit
994389d041
1 changed files with 3 additions and 1 deletions
|
@ -409,7 +409,9 @@ var FX = new Class({
|
|||
pipeline = pipeline.pop();
|
||||
}
|
||||
|
||||
pipeline.controller = fx;
|
||||
if (pipeline) {
|
||||
pipeline.controller = fx;
|
||||
}
|
||||
|
||||
return fx;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue