Skip to content

Commit

Permalink
Shorten splash screen display time
Browse files Browse the repository at this point in the history
  • Loading branch information
patapancakes committed Nov 1, 2023
1 parent 07c5116 commit 26eb5a2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/scene_logo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,8 @@ void Scene_Logo::vUpdate() {
}

// other logos do not invoke the slow CreateGameObjects: display them longer
bool frame_limit_reached = (frame_counter == (current_logo_index == 0 ? 60 : 90));
//bool frame_limit_reached = (frame_counter == (current_logo_index == 0 ? 60 : 90));
bool frame_limit_reached = true; // switch to game immediately

if (skip_logos ||
frame_limit_reached ||
Expand Down

0 comments on commit 26eb5a2

Please sign in to comment.