Skip to content

Commit b25bb52

Browse files
committed
some bugfixes
1 parent 9b0c88f commit b25bb52

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

src/game/cosmetic/LevelComplete.as

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ package game.cosmetic
7575
this.bestTime = new Text("No Best Time",160,180);
7676
}
7777

78-
this.bestTime.scrollX = this.time.scrollY = 0;
78+
this.bestTime.scrollX = this.bestTime.scrollY = 0;
7979
this.bestTime.color = this.C_TEXT;
8080
this.bestTime.alpha = 0;
8181
this.bestTime.centerOO();

src/game/engine/Level.as

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -206,6 +206,7 @@ package game.engine
206206

207207
if(Input.pressed("next"))
208208
{
209+
Assets.MusPowerOn.stop();
209210
if (levelExists(mode, levelNum + 1))
210211
{
211212
Main.saveData.advanceLevels(player.coins, time, 1);
@@ -214,6 +215,7 @@ package game.engine
214215
}
215216
if(Input.pressed("back"))
216217
{
218+
Assets.MusPowerOn.stop();
217219
if (levelExists(mode, levelNum - 1))
218220
{
219221
Main.saveData.advanceLevels(0, 0, -1);

src/game/menus/GameTitle.as

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ package game.menus
2222
super(160,36);
2323
graphic = this.list = new Graphiclist();
2424
Text.size = 36;
25-
this.two = new Text("1.4");
25+
this.two = new Text("1.5");
2626
this.two.color = 16777215;
2727
this.two.centerOO();
2828
this.two.y = this.two.y + 28;

0 commit comments

Comments
 (0)