blob: ddb6943f3bc1a9d2800e603bdf37675456878624 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
namespace Ryujinx.Horizon.Sdk.Sf.Cmif
{
class InlineContext
{
public static int Set(int newContext)
{
// TODO: Implement (will require FS changes???)
return newContext;
}
}
}
|