5d08e9b495
* hos: Cleanup the project Since a lot of changes has been done on the HOS project, there are some leftover here and there, or class just used in one service, things at wrong places, and more. This PR fixes that, additionnally to that, I've realigned some vars because I though it make the code more readable. * Address gdkchan feedback * addresses Thog feedback * Revert ElfSymbol
14 lines
No EOL
328 B
C#
14 lines
No EOL
328 B
C#
namespace Ryujinx.HLE.Loaders.Elf
|
|
{
|
|
struct ElfSymbol32
|
|
{
|
|
#pragma warning disable CS0649
|
|
public uint NameOffset;
|
|
public uint ValueAddress;
|
|
public uint Size;
|
|
public byte Info;
|
|
public byte Other;
|
|
public ushort SectionIndex;
|
|
#pragma warning restore CS0649
|
|
}
|
|
} |