change enum type to default
This commit is contained in:
parent
5e4677ed9f
commit
9171308d1a
6 changed files with 8 additions and 12 deletions
|
@ -1,6 +1,6 @@
|
||||||
namespace Ryujinx.HLE.FileSystem
|
namespace Ryujinx.HLE.FileSystem.Content
|
||||||
{
|
{
|
||||||
public enum ContentStorageId : byte
|
public enum ContentStorageId
|
||||||
{
|
{
|
||||||
NandSystem,
|
NandSystem,
|
||||||
NandUser,
|
NandUser,
|
||||||
|
|
|
@ -1,10 +1,6 @@
|
||||||
using System;
|
namespace Ryujinx.HLE.FileSystem.Content
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Text;
|
|
||||||
|
|
||||||
namespace Ryujinx.HLE.FileSystem.Content
|
|
||||||
{
|
{
|
||||||
enum TitleType : byte
|
enum TitleType
|
||||||
{
|
{
|
||||||
SystemPrograms = 0x01,
|
SystemPrograms = 0x01,
|
||||||
SystemDataArchive = 0x02,
|
SystemDataArchive = 0x02,
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
namespace Ryujinx.HLE.FileSystem
|
namespace Ryujinx.HLE.FileSystem
|
||||||
{
|
{
|
||||||
enum SaveSpaceId : byte
|
enum SaveSpaceId
|
||||||
{
|
{
|
||||||
NandSystem,
|
NandSystem,
|
||||||
NandUser,
|
NandUser,
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
namespace Ryujinx.HLE.FileSystem
|
namespace Ryujinx.HLE.FileSystem
|
||||||
{
|
{
|
||||||
internal enum StorageId : byte
|
internal enum StorageId
|
||||||
{
|
{
|
||||||
None,
|
None,
|
||||||
Host,
|
Host,
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
namespace Ryujinx.HLE.HOS.Services.FspSrv
|
namespace Ryujinx.HLE.HOS.Services.FspSrv
|
||||||
{
|
{
|
||||||
public enum DirectoryEntryType : byte
|
public enum DirectoryEntryType
|
||||||
{
|
{
|
||||||
Directory,
|
Directory,
|
||||||
File
|
File
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue