mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-07-11 21:44:18 +00:00
Allow more than one process, free resources on process dispose, implement SvcExitThread
This commit is contained in:
12
Ryujinx.Core/OsHle/Services/Vi/Display.cs
Normal file
12
Ryujinx.Core/OsHle/Services/Vi/Display.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
namespace Ryujinx.Core.OsHle.IpcServices.Vi
|
||||
{
|
||||
class Display
|
||||
{
|
||||
public string Name { get; private set; }
|
||||
|
||||
public Display(string Name)
|
||||
{
|
||||
this.Name = Name;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user