Constructor

Pls
This commit is contained in:
Isaac Marovitz 2024-02-15 13:08:37 -05:00
parent 9a767b1654
commit 9af23b49f2
No known key found for this signature in database
GPG key ID: 97250B2B09A132E1
2 changed files with 7 additions and 2 deletions

View file

@ -8,7 +8,12 @@ namespace Ryujinx.Horizon.Am.Ipc.Storage
{ {
partial class StorageChannel : IStorageChannel partial class StorageChannel : IStorageChannel
{ {
private Stack<IStorage> _storages; private readonly Stack<IStorage> _storages;
public StorageChannel()
{
_storages = new Stack<IStorage>();
}
[CmifCommand(0)] [CmifCommand(0)]
public Result Push(IStorage storage) public Result Push(IStorage storage)