From f0470b4096a0189448a59f3bbce5d9fa84ce84a1 Mon Sep 17 00:00:00 2001 From: Jonathan Olson Date: Thu, 27 May 2021 13:39:13 -0600 Subject: [PATCH] Go immediately to an initialScreen, see https://github.com/phetsims/joist/issues/717 --- js/Sim.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/Sim.js b/js/Sim.js index a365b482..9450aff0 100644 --- a/js/Sim.js +++ b/js/Sim.js @@ -152,7 +152,7 @@ define( function( require ) { } //If there is only one screen, do not show the home screen - if ( screens.length === 1 ) { + if ( screens.length === 1 || initialScreen !== 0 ) { showHomeScreen = false; }