mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-01-10 04:39: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)
|
||||
|
|
Loading…
Reference in a new issue