From cf5135f330078a00f9ac25fa94e178fe4dbcf669 Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Sun, 10 Aug 2025 20:36:53 -0400 Subject: [PATCH] Slight NE cleanup --- .../NewExecutable/InternalRefRelocationRecord.cs | 2 +- SabreTools.Models/NewExecutable/RelocationRecord.cs | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/SabreTools.Models/NewExecutable/InternalRefRelocationRecord.cs b/SabreTools.Models/NewExecutable/InternalRefRelocationRecord.cs index 931b1bf..125a7f0 100644 --- a/SabreTools.Models/NewExecutable/InternalRefRelocationRecord.cs +++ b/SabreTools.Models/NewExecutable/InternalRefRelocationRecord.cs @@ -13,7 +13,7 @@ namespace SabreTools.Models.NewExecutable public byte SegmentNumber; /// - /// 0 + /// Always 0 /// public byte Reserved; diff --git a/SabreTools.Models/NewExecutable/RelocationRecord.cs b/SabreTools.Models/NewExecutable/RelocationRecord.cs index 6cd6022..39fcd6c 100644 --- a/SabreTools.Models/NewExecutable/RelocationRecord.cs +++ b/SabreTools.Models/NewExecutable/RelocationRecord.cs @@ -33,25 +33,25 @@ /// /// INTERNALREF /// - /// Must be NULL if is not set to + /// Must be null if is not set to public InternalRefRelocationRecord? InternalRefRelocationRecord { get; set; } /// /// IMPORTNAME /// - /// Must be NULL if is not set to + /// Must be null if is not set to public ImportNameRelocationRecord? ImportNameRelocationRecord { get; set; } /// /// IMPORTORDINAL /// - /// Must be NULL if is not set to + /// Must be null if is not set to public ImportOrdinalRelocationRecord? ImportOrdinalRelocationRecord { get; set; } /// /// IMPORTORDINAL /// - /// Must be NULL if is not set to + /// Must be null if is not set to public OSFixupRelocationRecord? OSFixupRelocationRecord { get; set; } } }