@@ -102,7 +102,7 @@ package game.menus
102102 }
103103 if (this . credits && Input. pressed(Key. INSERT ) && Input. check(Key. CONTROL ) && CustomStage. customStage == null )
104104 {
105- Assets. SndMenuSelect. play ();
105+ Assets. instance . SndMenuSelect. play ();
106106 FP . stage . addChild (new CustomStage(this ));
107107 this . deactivateAllButtons();
108108 }
@@ -294,13 +294,13 @@ package game.menus
294294 Assets. setMusic(Assets. MusMenu);
295295 this . clearButtons();
296296 this . addButton(new MenuButton(160 ,225 ,"Back" ,this . gotoMain,Assets. SndMenuCancel));
297- this . addButton(new MenuButton(80 ,80 ,"Show Coins: " + this . getBoolName(Options. showCoins),this . toggleShowCoins,Assets. instance. SndMenuSelect));
298- this . addButton(new MenuButton(80 ,100 ,"Show Time: " + this . getBoolName(Options. showTime),this . toggleShowTime,Assets. instance. SndMenuSelect));
299- this . addButton(new MenuButton(80 ,120 ,"UP to Jump: " + this . getBoolName(Options. upToJump),this . toggleUpToJump,Assets. instance. SndMenuSelect));
300- this . addButton(new MenuButton(80 ,140 ,"Robot Voice: " + this . getBoolName(Options. voices),this . toggleVoice,Assets. instance. SndMenuSelect));
301- this . addButton(new MenuButton(80 ,160 ,"Audio: " + this . getVolumeName(),this . switchVolume,Assets. instance. SndMenuSelect));
302- this . addButton(new MenuButton(80 ,180 ,"Particles: " + this . getBoolName(Options. particles),this . toggleParticles,Assets. instance. SndMenuSelect));
303- this . addButton(new MenuButton(80 ,200 ,"Fullscreen: " + this . getBoolName(Options. fullscreen),this . toggleFullscreen,Assets. instance. SndMenuSelect));
297+ this . addButton(new MenuButton(160 ,80 ,"Show Coins: " + this . getBoolName(Options. showCoins),this . toggleShowCoins,Assets. instance. SndMenuSelect));
298+ this . addButton(new MenuButton(160 ,100 ,"Show Time: " + this . getBoolName(Options. showTime),this . toggleShowTime,Assets. instance. SndMenuSelect));
299+ this . addButton(new MenuButton(160 ,120 ,"UP to Jump: " + this . getBoolName(Options. upToJump),this . toggleUpToJump,Assets. instance. SndMenuSelect));
300+ this . addButton(new MenuButton(160 ,140 ,"Robot Voice: " + this . getBoolName(Options. voices),this . toggleVoice,Assets. instance. SndMenuSelect));
301+ this . addButton(new MenuButton(160 ,160 ,"Audio: " + this . getVolumeName(),this . switchVolume,Assets. instance. SndMenuSelect));
302+ this . addButton(new MenuButton(160 ,180 ,"Particles: " + this . getBoolName(Options. particles),this . toggleParticles,Assets. instance. SndMenuSelect));
303+ this . addButton(new MenuButton(160 ,200 ,"Fullscreen: " + this . getBoolName(Options. fullscreen),this . toggleFullscreen,Assets. instance. SndMenuSelect));
304304 }
305305
306306 private function gotoStats (m :MenuButton = null ) : void
0 commit comments