From 1cfda3484d811da5d875cd28a0b6b7cd48f3202e Mon Sep 17 00:00:00 2001 From: Alex Barney Date: Sat, 1 Dec 2018 14:32:47 -0600 Subject: [PATCH] Don't use var --- Ryujinx.HLE/FileSystem/Content/ContentManager.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Ryujinx.HLE/FileSystem/Content/ContentManager.cs b/Ryujinx.HLE/FileSystem/Content/ContentManager.cs index eec209d6ea..a39a9dd92e 100644 --- a/Ryujinx.HLE/FileSystem/Content/ContentManager.cs +++ b/Ryujinx.HLE/FileSystem/Content/ContentManager.cs @@ -168,7 +168,8 @@ namespace Ryujinx.HLE.FileSystem.Content { if (_contentDictionary.ContainsValue(ncaId)) { - var content = _contentDictionary.FirstOrDefault(x => x.Value == ncaId); + KeyValuePair<(ulong, ContentType), string> content = _contentDictionary.FirstOrDefault(x => x.Value == ncaId); + long titleId = (long)content.Key.Item1; ContentType contentType = content.Key.Item2; StorageId storage = GetInstalledStorage(titleId, contentType, storageId);