mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2024-11-15 09:35:27 +00:00
Don't use var
This commit is contained in:
parent
da3b463fd1
commit
1cfda3484d
|
@ -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);
|
||||||
|
|
Loading…
Reference in a new issue