reduce black screen delay

This commit is contained in:
Alula 2020-09-22 22:43:19 +02:00
parent f16731336e
commit a6b6361842
No known key found for this signature in database
GPG Key ID: 3E00485503A1D8BA
1 changed files with 2 additions and 2 deletions

View File

@ -151,12 +151,12 @@ impl Scene for TitleScene {
}
}
CurrentMenu::StartGame => {
if self.tick == 30 {
if self.tick == 10 {
state.start_new_game(ctx)?;
}
}
CurrentMenu::LoadGame => {
if self.tick == 30 {
if self.tick == 10 {
state.load_or_start_game(ctx)?;
}
}