Implement EnumerateDeliveryCacheDirectory
This commit is contained in:
parent
b5566282f0
commit
0a033574be
1 changed files with 11 additions and 1 deletions
|
@ -1,3 +1,4 @@
|
|||
using Ryujinx.Common.Logging;
|
||||
using Ryujinx.HLE.HOS.Ipc;
|
||||
using System.Collections.Generic;
|
||||
|
||||
|
@ -13,9 +14,18 @@ namespace Ryujinx.HLE.HOS.Services.Bcat
|
|||
{
|
||||
_commands = new Dictionary<int, ServiceProcessRequest>
|
||||
{
|
||||
//...
|
||||
{ 10, EnumerateDeliveryCacheDirectory }
|
||||
};
|
||||
}
|
||||
|
||||
private long EnumerateDeliveryCacheDirectory(ServiceCtx context)
|
||||
{
|
||||
Logger.PrintStub(LogClass.ServiceBcat);
|
||||
|
||||
// We have no cache directories, so return 0.
|
||||
context.ResponseData.Write(0);
|
||||
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue