Skip to content

Commit

Permalink
Use old image names with "GenericGame" prefix in AMM images. See phet…
Browse files Browse the repository at this point in the history
  • Loading branch information
Luisav1 committed Apr 2, 2024
1 parent ab536d4 commit 8d310a7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions js/screens/GenericGameScreen.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,17 +19,17 @@ import GameAreaScreenView from '../game/view/GameAreaScreenView.js';
class GenericGameScreen extends Screen {

/**
* @param { LocalizedImageProperty } gameHomeScreenIconImageProperty
* @param { LocalizedImageProperty } genericGameScreenIconImageProperty
* @param {Array<LocalizedImageProperty>} imageProperties
* @param {number[]} gameLevels
* @public
*/
constructor( gameHomeScreenIconImageProperty, imageProperties, gameLevels ) {
constructor( genericGameScreenIconImageProperty, imageProperties, gameLevels ) {

const options = {
name: AreaModelCommonStrings.screen.gameStringProperty,
backgroundColorProperty: AreaModelCommonColors.backgroundProperty,
homeScreenIcon: new ScreenIcon( new Image( gameHomeScreenIconImageProperty ), {
homeScreenIcon: new ScreenIcon( new Image( genericGameScreenIconImageProperty ), {
maxIconWidthProportion: 1,
maxIconHeightProportion: 1
} ),
Expand Down

0 comments on commit 8d310a7

Please sign in to comment.