mirror of
https://github.com/photonstorm/phaser
synced 2024-11-26 06:30:38 +00:00
Fixed property name
This commit is contained in:
parent
0206c1a1a2
commit
bba88b32d8
1 changed files with 1 additions and 1 deletions
|
@ -458,7 +458,7 @@ var Config = new Class({
|
|||
/**
|
||||
* @const {integer} Phaser.Core.Config#loaderMaxParallelDownloads - Maximum parallel downloads allowed for resources (Default to 32).
|
||||
*/
|
||||
var defaultParallel = (Device.OS.android) ? 6 : 32;
|
||||
var defaultParallel = (Device.os.android) ? 6 : 32;
|
||||
|
||||
this.loaderMaxParallelDownloads = GetValue(config, 'loader.maxParallelDownloads', defaultParallel);
|
||||
|
||||
|
|
Loading…
Reference in a new issue