mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-07-30 17:49:57 -06:00
misc: Replace references to IntPtr/UIntPtr with nint/nuint + code cleanups.
This commit is contained in:
@ -4,10 +4,10 @@ namespace Ryujinx.Cpu.LightningJit
|
||||
{
|
||||
class TranslatedFunction
|
||||
{
|
||||
public IntPtr FuncPointer { get; }
|
||||
public nint FuncPointer { get; }
|
||||
public ulong GuestSize { get; }
|
||||
|
||||
public TranslatedFunction(IntPtr funcPointer, ulong guestSize)
|
||||
public TranslatedFunction(nint funcPointer, ulong guestSize)
|
||||
{
|
||||
FuncPointer = funcPointer;
|
||||
GuestSize = guestSize;
|
||||
|
Reference in New Issue
Block a user