misc: chore: Use explicit types in HLE project
This commit is contained in:
@@ -40,7 +40,7 @@ namespace Ryujinx.HLE.HOS.Tamper.CodeEmitters
|
||||
}
|
||||
|
||||
// Use the conditional begin instruction stored in the stack.
|
||||
var upperInstruction = context.CurrentBlock.BaseInstruction;
|
||||
byte[] upperInstruction = context.CurrentBlock.BaseInstruction;
|
||||
CodeType codeType = InstructionHelper.GetCodeType(upperInstruction);
|
||||
|
||||
// Pop the current block of operations from the stack so control instructions
|
||||
|
||||
@@ -96,7 +96,7 @@ namespace Ryujinx.HLE.HOS.Tamper
|
||||
// Instructions are multi-word, with 32bit words. Split the raw instruction
|
||||
// and parse each word into individual nybbles of bits.
|
||||
|
||||
var words = rawInstruction.Split((char[])null, StringSplitOptions.RemoveEmptyEntries);
|
||||
string[] words = rawInstruction.Split((char[])null, StringSplitOptions.RemoveEmptyEntries);
|
||||
|
||||
byte[] instruction = new byte[WordSize * words.Length];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user