misc: chore: Use explicit types in NVDEC projects (except VP9 because there's an open PR and I don't want to cause conflicts)

This commit is contained in:
Evan Husted 2025-01-25 14:07:20 -06:00
parent 76ec047eb7
commit 68bbb29be6
4 changed files with 14 additions and 12 deletions

View file

@ -41,7 +41,7 @@ namespace Ryujinx.Graphics.Nvdec.FFmpeg.Native
{
handle = nint.Zero;
if (_librariesWhitelist.TryGetValue(libraryName, out var value))
if (_librariesWhitelist.TryGetValue(libraryName, out (int, int) value))
{
(int minVersion, int maxVersion) = value;