You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was testing this on a game's save data. I noticed that oneof doesn't seem to be supported properly. In the protobuf source, it seems that inside of FieldDescriptorProto the oneof_index is case (9): I found this by looking through the descriptors binary data for 480142150A which the first byte 48 >> 3 = 9 At the current time of manually by-hand decoding, I have been setting just the optional field (which works for rebuilding) but not entirely sure that is correct.
The text was updated successfully, but these errors were encountered:
I was testing this on a game's save data. I noticed that oneof doesn't seem to be supported properly. In the protobuf source, it seems that inside of FieldDescriptorProto the
oneof_index
iscase (9):
I found this by looking through the descriptors binary data for480142150A
which the first byte48 >> 3 = 9
At the current time of manually by-hand decoding, I have been setting just the optional field (which works for rebuilding) but not entirely sure that is correct.The text was updated successfully, but these errors were encountered: