auto: default to an increased speed when auto playing

This commit is contained in:
Trianta 2024-08-21 03:17:23 -05:00
parent 2cb54b68c4
commit c6197e84dc

View File

@ -14,6 +14,8 @@ void GameEngine::Start(void) {
PrepareGameBoard(); PrepareGameBoard();
if (!state.m_bNoDisplay) if (!state.m_bNoDisplay)
graphics.StartGameWindow(); graphics.StartGameWindow();
if (state.m_bIsBotControlled)
graphics.SetShowGame(true);
Loop(); Loop();
} }