Skip to content

Commit

Permalink
Fix breaking change.
Browse files Browse the repository at this point in the history
  • Loading branch information
rolfbjarne committed Jun 7, 2024
1 parent 17c016c commit 3ce3955
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/gamecontroller.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2118,7 +2118,7 @@ interface GCDualSenseAdaptiveTrigger {
#if XAMCORE_5_0
[Export ("setModeFeedbackWithResistiveStrengths:")]
#else
[Wrap ("_SetModeFeedback (positionalResistiveStrengths.ToBlittable ())")]
[Wrap ("_SetModeFeedback (positionalResistiveStrengths.ToBlittable ())", IsVirtual = true)]
#endif
void SetModeFeedback (GCDualSenseAdaptiveTriggerPositionalResistiveStrengths positionalResistiveStrengths);

Expand All @@ -2139,7 +2139,7 @@ interface GCDualSenseAdaptiveTrigger {
#if XAMCORE_5_0
[Export ("setModeVibrationWithAmplitudes:frequency:")]
#else
[Wrap ("_SetModeVibration (positionalAmplitudes.ToBlittable (), frequency)")]
[Wrap ("_SetModeVibration (positionalAmplitudes.ToBlittable (), frequency)", IsVirtual = true)]
#endif
void SetModeVibration (GCDualSenseAdaptiveTriggerPositionalAmplitudes positionalAmplitudes, float frequency);

Expand Down

1 comment on commit 3ce3955

@vs-mobiletools-engineering-service2

This comment was marked as outdated.

Please sign in to comment.