mirror of
https://git.743378673.xyz/MeloNX/MeloNX.git
synced 2025-07-30 21:37:10 +02:00
Add dedicated ServerBase for FileSystem services (#3142)
This should prevent filesystem services from blocking other services that don't have their own ServerBase. May improve filesystem related stutters in certain titles. Improves button advanced cutscenes such as Miqol's Request in Xenoblade: DE when the game is on a network share (used to stutter when voice lines played). Should probably be tested to make sure no mysterious bugs have been unearthed, and to see if any other filesystem related perf issues are improved.
This commit is contained in:
parent
84b05a9c3d
commit
9584fbe4aa
3 changed files with 5 additions and 1 deletions
|
@ -7,6 +7,8 @@ namespace Ryujinx.HLE.HOS.Services
|
|||
{
|
||||
private int _disposeState;
|
||||
|
||||
public DisposableIpcService(ServerBase server = null) : base(server) { }
|
||||
|
||||
protected abstract void Dispose(bool isDisposing);
|
||||
|
||||
public void Dispose()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue