Fix build

Former-commit-id: c2e2487768
This commit is contained in:
2022-11-16 12:06:16 -08:00
parent f68f6e6f49
commit 1609c491a5
2 changed files with 3 additions and 3 deletions

View File

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