From 8a54f4a6c3fa318b70fa947eaf25f641ca720ffa Mon Sep 17 00:00:00 2001 From: cosmii02 Date: Fri, 7 Jun 2024 20:12:55 +0300 Subject: [PATCH] added dirt rally 2 as a game for detection --- Config/ConfigHandler.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Config/ConfigHandler.cs b/Config/ConfigHandler.cs index 9d0ff4e..3b57ace 100644 --- a/Config/ConfigHandler.cs +++ b/Config/ConfigHandler.cs @@ -53,7 +53,7 @@ private static Config AddDefaultProfiles(Config config) GameType = GameTypes.Dirt }; profile.throttleSettings.GripLossValue = 0.4f; - profile.executableNames.AddRange(new string[] { "drt"}); + profile.executableNames.AddRange(new string[] { "drt", "dirtrally2"}); config.Profiles.Add("Dirt", profile); }