From 041ee4a7f5dc1a05ebcb90570f541fdabbccf265 Mon Sep 17 00:00:00 2001 From: gdkchan Date: Wed, 25 Mar 2020 11:07:35 -0300 Subject: [PATCH] Fix typo --- Ryujinx.Graphics.Shader/Instructions/InstEmitVideo.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Ryujinx.Graphics.Shader/Instructions/InstEmitVideo.cs b/Ryujinx.Graphics.Shader/Instructions/InstEmitVideo.cs index f73856dc00..7b3d9ca515 100644 --- a/Ryujinx.Graphics.Shader/Instructions/InstEmitVideo.cs +++ b/Ryujinx.Graphics.Shader/Instructions/InstEmitVideo.cs @@ -43,7 +43,7 @@ namespace Ryujinx.Graphics.Shader.Instructions { // Signedness is different, but for max, result will always fit a U32, // since one of the inputs can't be negative, and the result is the one - // with higuest value. For min, it will always fit on a S32, since + // with highest value. For min, it will always fit on a S32, since // one of the input can't be greater than INT_MAX and we want the lowest value. resSigned = !max;