Don't use var
This commit is contained in:
parent
da3b463fd1
commit
1cfda3484d
1 changed files with 2 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue