mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-08-01 20:17:11 +02:00
19 lines
407 B
C#
19 lines
407 B
C#
using System;
|
|
|
|
namespace Ryujinx.Horizon.Sdk.Sf.Cmif
|
|
{
|
|
struct ScopedInlineContextChange : IDisposable
|
|
{
|
|
private readonly int _previousContext;
|
|
|
|
public ScopedInlineContextChange(int newContext)
|
|
{
|
|
_previousContext = InlineContext.Set(newContext);
|
|
}
|
|
|
|
public void Dispose()
|
|
{
|
|
InlineContext.Set(_previousContext);
|
|
}
|
|
}
|
|
}
|