Explorar el Código

Added missing ++ in BindMacro GPU method (#688)

BaronKiko hace 7 años
padre
commit
29a9c5f0b8
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      Ryujinx.Graphics/Graphics3d/NvGpuFifo.cs

+ 1 - 1
Ryujinx.Graphics/Graphics3d/NvGpuFifo.cs

@@ -131,7 +131,7 @@ namespace Ryujinx.Graphics.Graphics3d
                     {
                         int position = methCall.Argument;
 
-                        _macros[_currMacroBindIndex] = new CachedMacro(this, _gpu.Engine3d, position);
+                        _macros[_currMacroBindIndex++] = new CachedMacro(this, _gpu.Engine3d, position);
 
                         break;
                     }