mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 04:08:35 +00:00
20 lines
413 B
C#
20 lines
413 B
C#
|
namespace ARMeilleure.Translation.PTC
|
||
|
{
|
||
|
struct RelocEntry
|
||
|
{
|
||
|
public int Position;
|
||
|
public int Index;
|
||
|
|
||
|
public RelocEntry(int position, int index)
|
||
|
{
|
||
|
Position = position;
|
||
|
Index = index;
|
||
|
}
|
||
|
|
||
|
public override string ToString()
|
||
|
{
|
||
|
return $"({nameof(Position)} = {Position}, {nameof(Index)} = {Index})";
|
||
|
}
|
||
|
}
|
||
|
}
|