mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-01-09 20:29:11 +00:00
Format
Constructor Pls
This commit is contained in:
parent
9a767b1654
commit
9af23b49f2
2 changed files with 7 additions and 2 deletions
|
@ -8,7 +8,12 @@ namespace Ryujinx.Horizon.Am.Ipc.Storage
|
|||
{
|
||||
partial class StorageChannel : IStorageChannel
|
||||
{
|
||||
private Stack<IStorage> _storages;
|
||||
private readonly Stack<IStorage> _storages;
|
||||
|
||||
public StorageChannel()
|
||||
{
|
||||
_storages = new Stack<IStorage>();
|
||||
}
|
||||
|
||||
[CmifCommand(0)]
|
||||
public Result Push(IStorage storage)
|
||||
|
|
|
@ -19,7 +19,7 @@ namespace Ryujinx.Horizon.Sdk.Am
|
|||
SleepRequiredByHighTemperature = 27,
|
||||
SleepRequiredByLowBattery = 28,
|
||||
AutoPowerDown = 29,
|
||||
OperationModeChanged = 30,
|
||||
OperationModeChanged = 30,
|
||||
PerformanceModeChanged = 31,
|
||||
DetectReceivingCecSystemStandby = 32,
|
||||
SdCardRemoved = 33,
|
||||
|
|
Loading…
Reference in a new issue