Skip to content

Commit

Permalink
Adding N key to go to the next level.
Browse files Browse the repository at this point in the history
  • Loading branch information
MainMemory committed May 15, 2015
1 parent a4c877c commit d2f2d62
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions SonicBGScrollSaver/MainForm.cs
Expand Up @@ -161,6 +161,12 @@ private void MainForm_KeyDown(object sender, KeyEventArgs e)
playMusic = true;
}
break;
case Keys.N:
level = null;
FrameTimer.Stop();
SwitchTimer.Stop();
ChangeLevel();
break;
default:
level = null;
FrameTimer.Stop();
Expand Down

0 comments on commit d2f2d62

Please sign in to comment.