Skip to content

Commit

Permalink
include splash in simulator builds
Browse files Browse the repository at this point in the history
  • Loading branch information
collingreen committed Oct 17, 2015
1 parent 369151d commit 5321194
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/build/streams/html.js
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ exports.GameHTML = Class(function () {
])
.bind(this)
.spread(function (css, js, splashExists, appCacheEvents) {
if (!splashExists && !config.isSimulated) {
if (!splashExists) {
var splashPaths = {
'portrait': ['portrait2048', 'portrait1136',
'portrait1024', 'portrait960', 'portrait480'],
Expand Down
2 changes: 1 addition & 1 deletion src/build/targets/browser/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ exports.init = function (api, app, config) {

if (config.isSimulated) {
config.browser = {
embedSplash: false,
embedSplash: true,
embedFonts: false,
appleTouchIcon: false,
appleTouchStartupImage: false,
Expand Down

0 comments on commit 5321194

Please sign in to comment.