Match and link CFire, minor fixes

This commit is contained in:
2024-12-23 23:18:15 -08:00
parent 1ec5a25fa6
commit 82901862fa
20 changed files with 198 additions and 82 deletions

View File

@@ -45,7 +45,6 @@ CHECK_SIZEOF(TEditorId, 0x4)
struct TUniqueId {
ushort value;
TUniqueId(ushort version, ushort id) : value(((version & 0x3F) << 10) | (id & 0x3FF)) {}
ushort Value() const { return value & 0x3FF; }