mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-07-31 09:37:11 +02:00
misc: chore: Use explicit types in Tests projects
This commit is contained in:
parent
93539e7d45
commit
250acab7a7
8 changed files with 60 additions and 57 deletions
|
@ -2,6 +2,7 @@
|
|||
|
||||
using ARMeilleure.State;
|
||||
using NUnit.Framework;
|
||||
using NUnit.Framework.Internal;
|
||||
|
||||
namespace Ryujinx.Tests.Cpu
|
||||
{
|
||||
|
@ -467,7 +468,7 @@ namespace Ryujinx.Tests.Cpu
|
|||
opcode |= (vn & 0xf) << 16;
|
||||
opcode |= (length & 0x3) << 8;
|
||||
|
||||
var rnd = TestContext.CurrentContext.Random;
|
||||
Randomizer rnd = TestContext.CurrentContext.Random;
|
||||
V128 v2 = new(TestContext.CurrentContext.Random.NextULong(), TestContext.CurrentContext.Random.NextULong());
|
||||
V128 v3 = new(TestContext.CurrentContext.Random.NextULong(), TestContext.CurrentContext.Random.NextULong());
|
||||
V128 v4 = new(TestContext.CurrentContext.Random.NextULong(), TestContext.CurrentContext.Random.NextULong());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue