From 3dd0ce10fe564a9c71836217cab358512b850187 Mon Sep 17 00:00:00 2001 From: zchenak Date: Fri, 6 Oct 2023 15:58:30 +0100 Subject: [PATCH] Update Program.cs Add FM8 support --- ForzaDualSense/Program.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ForzaDualSense/Program.cs b/ForzaDualSense/Program.cs index f588570..cbc3c65 100644 --- a/ForzaDualSense/Program.cs +++ b/ForzaDualSense/Program.cs @@ -687,6 +687,9 @@ static bool AdjustToBufferType(int bufferLength) case 311: // FM7 dash FMData.BufferOffset = 0; return true; + case 331: // FM8 dash + FMData.BufferOffset = 0; + return true; case 324: // FH4 FMData.BufferOffset = 12; return true;