mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-06-28 14:10:47 -07:00
Don't use var
This commit is contained in:
@ -168,7 +168,8 @@ namespace Ryujinx.HLE.FileSystem.Content
|
|||||||
{
|
{
|
||||||
if (_contentDictionary.ContainsValue(ncaId))
|
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;
|
long titleId = (long)content.Key.Item1;
|
||||||
ContentType contentType = content.Key.Item2;
|
ContentType contentType = content.Key.Item2;
|
||||||
StorageId storage = GetInstalledStorage(titleId, contentType, storageId);
|
StorageId storage = GetInstalledStorage(titleId, contentType, storageId);
|
||||||
|
Reference in New Issue
Block a user