2022-01-12 06:22:19 -05:00
|
|
|
|
using LibHac.FsSystem;
|
2018-11-18 14:37:41 -05:00
|
|
|
|
|
2022-03-22 15:46:16 -04:00
|
|
|
|
namespace Ryujinx.HLE.FileSystem
|
2018-11-18 14:37:41 -05:00
|
|
|
|
{
|
|
|
|
|
public struct LocationEntry
|
|
|
|
|
{
|
2019-10-17 02:17:44 -04:00
|
|
|
|
public string ContentPath { get; private set; }
|
|
|
|
|
public int Flag { get; private set; }
|
2021-04-24 06:16:01 -04:00
|
|
|
|
public ulong TitleId { get; private set; }
|
2019-10-17 02:17:44 -04:00
|
|
|
|
public NcaContentType ContentType { get; private set; }
|
2018-11-18 14:37:41 -05:00
|
|
|
|
|
2021-04-24 06:16:01 -04:00
|
|
|
|
public LocationEntry(string contentPath, int flag, ulong titleId, NcaContentType contentType)
|
2018-11-18 14:37:41 -05:00
|
|
|
|
{
|
2018-12-06 06:16:24 -05:00
|
|
|
|
ContentPath = contentPath;
|
|
|
|
|
Flag = flag;
|
|
|
|
|
TitleId = titleId;
|
|
|
|
|
ContentType = contentType;
|
2018-11-18 14:37:41 -05:00
|
|
|
|
}
|
|
|
|
|
|
2018-12-06 06:16:24 -05:00
|
|
|
|
public void SetFlag(int flag)
|
2018-11-18 14:37:41 -05:00
|
|
|
|
{
|
2018-12-06 06:16:24 -05:00
|
|
|
|
Flag = flag;
|
2018-11-18 14:37:41 -05:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|