From c6197e84dc29cbeba9376631509635b21ad6948a Mon Sep 17 00:00:00 2001 From: Trianta <56975502+Trimutex@users.noreply.github.com> Date: Wed, 21 Aug 2024 03:17:23 -0500 Subject: [PATCH] auto: default to an increased speed when auto playing --- src/gamestate.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/gamestate.cpp b/src/gamestate.cpp index 9b96572..7e949f0 100755 --- a/src/gamestate.cpp +++ b/src/gamestate.cpp @@ -14,6 +14,8 @@ void GameEngine::Start(void) { PrepareGameBoard(); if (!state.m_bNoDisplay) graphics.StartGameWindow(); + if (state.m_bIsBotControlled) + graphics.SetShowGame(true); Loop(); }