diff options
Diffstat (limited to 'Ryujinx.HLE/HOS/Services/Spl')
-rw-r--r-- | Ryujinx.HLE/HOS/Services/Spl/IGeneralInterface.cs | 10 | ||||
-rw-r--r-- | Ryujinx.HLE/HOS/Services/Spl/Types/DramId.cs | 58 |
2 files changed, 34 insertions, 34 deletions
diff --git a/Ryujinx.HLE/HOS/Services/Spl/IGeneralInterface.cs b/Ryujinx.HLE/HOS/Services/Spl/IGeneralInterface.cs index 53c9eb48..30e22e12 100644 --- a/Ryujinx.HLE/HOS/Services/Spl/IGeneralInterface.cs +++ b/Ryujinx.HLE/HOS/Services/Spl/IGeneralInterface.cs @@ -67,17 +67,17 @@ namespace Ryujinx.HLE.HOS.Services.Spl configValue = 0; break; case ConfigItem.DramId: - if (memorySize == MemorySize.MemorySize8GB) + if (memorySize == MemorySize.MemorySize8GiB) { - configValue = (ulong)DramId.IowaSamsung8GB; + configValue = (ulong)DramId.IowaSamsung8GiB; } - else if (memorySize == MemorySize.MemorySize6GB) + else if (memorySize == MemorySize.MemorySize6GiB) { - configValue = (ulong)DramId.IcosaSamsung6GB; + configValue = (ulong)DramId.IcosaSamsung6GiB; } else { - configValue = (ulong)DramId.IcosaSamsung4GB; + configValue = (ulong)DramId.IcosaSamsung4GiB; } break; case ConfigItem.SecurityEngineInterruptNumber: diff --git a/Ryujinx.HLE/HOS/Services/Spl/Types/DramId.cs b/Ryujinx.HLE/HOS/Services/Spl/Types/DramId.cs index 4e1d1f0e..422c8d69 100644 --- a/Ryujinx.HLE/HOS/Services/Spl/Types/DramId.cs +++ b/Ryujinx.HLE/HOS/Services/Spl/Types/DramId.cs @@ -2,34 +2,34 @@ { enum DramId { - IcosaSamsung4GB, - IcosaHynix4GB, - IcosaMicron4GB, - IowaHynix1y4GB, - IcosaSamsung6GB, - HoagHynix1y4GB, - AulaHynix1y4GB, - IowaX1X2Samsung4GB, - IowaSansung4GB, - IowaSamsung8GB, - IowaHynix4GB, - IowaMicron4GB, - HoagSamsung4GB, - HoagSamsung8GB, - HoagHynix4GB, - HoagMicron4GB, - IowaSamsung4GBY, - IowaSamsung1y4GBX, - IowaSamsung1y8GBX, - HoagSamsung1y4GBX, - IowaSamsung1y4GBY, - IowaSamsung1y8GBY, - AulaSamsung1y4GB, - HoagSamsung1y8GBX, - AulaSamsung1y4GBX, - IowaMicron1y4GB, - HoagMicron1y4GB, - AulaMicron1y4GB, - AulaSamsung1y8GBX + IcosaSamsung4GiB, + IcosaHynix4GiB, + IcosaMicron4GiB, + IowaHynix1y4GiB, + IcosaSamsung6GiB, + HoagHynix1y4GiB, + AulaHynix1y4GiB, + IowaX1X2Samsung4GiB, + IowaSansung4GiB, + IowaSamsung8GiB, + IowaHynix4GiB, + IowaMicron4GiB, + HoagSamsung4GiB, + HoagSamsung8GiB, + HoagHynix4GiB, + HoagMicron4GiB, + IowaSamsung4GiBY, + IowaSamsung1y4GiBX, + IowaSamsung1y8GiBX, + HoagSamsung1y4GiBX, + IowaSamsung1y4GiBY, + IowaSamsung1y8GiBY, + AulaSamsung1y4GiB, + HoagSamsung1y8GiBX, + AulaSamsung1y4GiBX, + IowaMicron1y4GiB, + HoagMicron1y4GiB, + AulaMicron1y4GiB, + AulaSamsung1y8GiBX } }
\ No newline at end of file |