From 594f871fab5c7fe197bb55dd97b052f70bca15a5 Mon Sep 17 00:00:00 2001 From: ALEZ-DEV Date: Tue, 29 Apr 2025 20:14:24 +0200 Subject: [PATCH] forgot this file in the last commit, my bad --- babylonia-terminal-gui/src/manager.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/babylonia-terminal-gui/src/manager.rs b/babylonia-terminal-gui/src/manager.rs index b20150e..8b4bf95 100644 --- a/babylonia-terminal-gui/src/manager.rs +++ b/babylonia-terminal-gui/src/manager.rs @@ -52,7 +52,7 @@ pub async fn run_game() -> anyhow::Result<()> { anyhow::bail!("Failed to start game, the game directory was not found"); } - GameManager::start_game(&proton, game_dir.unwrap(), None, false).await?; + GameManager::start_game(&proton, game_dir.unwrap(), None, vec![], false).await?; Ok(()) }