From 5152783534d18215a25b6d232dc837ce9143eaa5 Mon Sep 17 00:00:00 2001 From: Oliver Hamlet Date: Wed, 12 Mar 2025 17:26:43 +0000 Subject: [PATCH] Fix another translation bug --- src/game.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/game.rs b/src/game.rs index bb9549e3..60eb671d 100644 --- a/src/game.rs +++ b/src/game.rs @@ -154,7 +154,7 @@ impl Game { /// can be used to provide the local path instead. pub fn new(game_type: GameType, game_path: &Path) -> Result { logging::info!( - "Attempting to create a game handle for game type {} with game path {:?}", + "Attempting to create a game handle for game type \"{}\" with game path {:?}", game_type, game_path ); @@ -196,7 +196,7 @@ impl Game { game_local_path: &Path, ) -> Result { logging::info!( - "Attempting to create a game handle for game type {} with game path {:?} and game local path {:?}", + "Attempting to create a game handle for game type \"{}\" with game path {:?} and game local path {:?}", game_type, game_path, game_local_path