diff options
Diffstat (limited to 'Ryujinx.Graphics.Shader/Translation/GlobalMemory.cs')
| -rw-r--r-- | Ryujinx.Graphics.Shader/Translation/GlobalMemory.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Ryujinx.Graphics.Shader/Translation/GlobalMemory.cs b/Ryujinx.Graphics.Shader/Translation/GlobalMemory.cs index 75bd9ddf..1be63868 100644 --- a/Ryujinx.Graphics.Shader/Translation/GlobalMemory.cs +++ b/Ryujinx.Graphics.Shader/Translation/GlobalMemory.cs @@ -20,7 +20,9 @@ namespace Ryujinx.Graphics.Shader.Translation { return (inst.IsAtomic() && IsGlobalMr(inst)) || inst == Instruction.LoadGlobal || - inst == Instruction.StoreGlobal; + inst == Instruction.StoreGlobal || + inst == Instruction.StoreGlobal16 || + inst == Instruction.StoreGlobal8; } private static bool IsGlobalMr(Instruction inst) |
