We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3935661 commit ddcf2f3Copy full SHA for ddcf2f3
1 file changed
src/LibVLCSharp/Shared/Core/Core.cs
@@ -86,7 +86,7 @@ static internal bool LibVLCLoaded
86
Architecture.X64 => ArchitectureNames.Win64,
87
Architecture.X86 => ArchitectureNames.Win86,
88
Architecture.Arm64 => ArchitectureNames.WinArm64,
89
- _ => arch = PlatformHelper.IsX64BitProcess ? ArchitectureNames.Win64 : ArchitectureNames.Win86
+ _ => PlatformHelper.IsX64BitProcess ? ArchitectureNames.Win64 : ArchitectureNames.Win86
90
};
91
}
92
#endif
0 commit comments