Skip to content

Commit 0d7a7e9

Browse files
committed
Merge remote-tracking branch 'origin/master'
2 parents bd5c36b + cd31d2e commit 0d7a7e9

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

BeefLibs/corlib/src/Reflection/AttributeInfo.bf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ namespace System.Reflection
189189
.Double:
190190
let attrData = AttributeInfo.Decode!<int64>(mData);
191191
args[argIdx] = Variant.Create(attrData);
192-
case (TypeCode)typeof(TypeCode).MaxValue + 8: //BfConstType_TypeOf
192+
case (TypeCode)typeof(TypeCode).MaxValue + 9: //BfConstType_TypeOf
193193
let argTypeId = AttributeInfo.Decode!<int32>(mData);
194194
args[argIdx] = Variant.Create(Type.[Friend]GetType((.)argTypeId));
195195
case (TypeCode)255:
@@ -463,7 +463,7 @@ namespace System.Reflection
463463
.Double:
464464
let attrData = AttributeInfo.Decode!<int64>(mData);
465465
args[argIdx] = scope:: box attrData;
466-
case (TypeCode)typeof(TypeCode).MaxValue + 8: //BfConstType_TypeOf
466+
case (TypeCode)typeof(TypeCode).MaxValue + 9: //BfConstType_TypeOf
467467
let argTypeId = AttributeInfo.Decode!<int32>(mData);
468468
args[argIdx] = Type.[Friend]GetType((.)argTypeId);
469469
case (TypeCode)255:

0 commit comments

Comments
 (0)