Ejemplo n.º 1
0
        /// <summary>
        ///     Displays the game description and details on the splash screen.
        /// </summary>
        private void DisplaySplashText()
        {
            if (!_splashSettings.Enabled)
            {
                return;
            }

            Log.Debug("Displaying splash screen");

            var game = _gamePlayManager.CurrentGame();

            BackgroundForm.SetGameText(game.Description, $@"{game.Year} {game.Manufacturer}");
        }