1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-08-23 12:26:27 -05:00

Add scalar variants of FCVTZS/FCVTZU, fix a issue on Ryushader

This commit is contained in:
gdkchan
2018-05-18 14:44:49 -03:00
parent b19c474082
commit 7ac5f40532
3 changed files with 57 additions and 1 deletions

View File

@@ -28,7 +28,7 @@ namespace Ryushader
int[] Code = new int[Data.Length / 4];
for (int Offset = 0; Offset < Data.Length; Offset += 4)
for (int Offset = 0; Offset + 4 <= Data.Length; Offset += 4)
{
int Value = BitConverter.ToInt32(Data, Offset);