We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b489a4 commit f979679Copy full SHA for f979679
data.cpp
@@ -703,7 +703,7 @@ void UnityData::loadExecutableData() {
703
uint32 descOffset = stream->readUint32();
704
obj.x = stream->readUint32();
705
obj.y = stream->readUint32();
706
- obj.unknown1 = stream->readUint32();
+ obj.y_adjust = stream->readUint32();
707
obj.unknown2 = stream->readUint32();
708
obj.filename = readStringFromOffset(stream, descOffset);
709
_bridgeObjects.push_back(obj);
origdata.h
@@ -48,7 +48,7 @@ struct BridgeObject {
48
objectID id;
49
Common::String filename;
50
uint32 x, y;
51
- int32 unknown1;
+ int32 y_adjust;
52
uint32 unknown2;
53
};
54
0 commit comments