mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-06-29 20:50:48 -07:00
Fix PPTC on Windows 7. (#1369)
* Fix PPTC on Windows 7. * Address gdkchan comment.
This commit is contained in:
@ -34,9 +34,9 @@ namespace ARMeilleure.IntermediateRepresentation
|
||||
return Operand().With(value);
|
||||
}
|
||||
|
||||
public static Operand Const(long value, bool disableCF = false, int? index = null)
|
||||
public static Operand Const(long value, bool relocatable = false, int? index = null)
|
||||
{
|
||||
return Operand().With(value, disableCF, index);
|
||||
return Operand().With(value, relocatable, index);
|
||||
}
|
||||
|
||||
public static Operand Const(ulong value)
|
||||
|
Reference in New Issue
Block a user