From ad3d2fb5a9326577a9ea1b67e06a34b09236dd8d Mon Sep 17 00:00:00 2001 From: Xpl0itR Date: Sun, 12 Apr 2020 22:02:37 +0100 Subject: Implement update loader and log loaded application info (#1023) * Implement update loader * Add title version to titlebar and log loaded application info * nits * requested changes --- Ryujinx.HLE/Loaders/Npdm/Npdm.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Ryujinx.HLE/Loaders') diff --git a/Ryujinx.HLE/Loaders/Npdm/Npdm.cs b/Ryujinx.HLE/Loaders/Npdm/Npdm.cs index 4400793f..345721c7 100644 --- a/Ryujinx.HLE/Loaders/Npdm/Npdm.cs +++ b/Ryujinx.HLE/Loaders/Npdm/Npdm.cs @@ -12,7 +12,7 @@ namespace Ryujinx.HLE.Loaders.Npdm private const int MetaMagic = 'M' << 0 | 'E' << 8 | 'T' << 16 | 'A' << 24; public byte MmuFlags { get; private set; } - public bool Is64Bits { get; private set; } + public bool Is64Bit { get; private set; } public byte MainThreadPriority { get; private set; } public byte DefaultCpuId { get; private set; } public int PersonalMmHeapSize { get; private set; } @@ -37,7 +37,7 @@ namespace Ryujinx.HLE.Loaders.Npdm MmuFlags = reader.ReadByte(); - Is64Bits = (MmuFlags & 1) != 0; + Is64Bit = (MmuFlags & 1) != 0; reader.ReadByte(); -- cgit v1.2.3