mirror of
https://github.com/zeldaret/st
synced 2026-09-06 10:55:19 -04:00
Decompile overlay 1 (Part 2) (#91)
* UnkStruct_027e09b8_001 OK * match func_ov001_020b7830 * fix build issues * UnkStruct_027e0cd8_001 49% * UnkStruct_027e0cd8_001 OK * fix build issues * UnkStruct_027e0cd8_0C_001 92% * port some MSL C++ headers from rb3 and key decomps * fix build issues * UnkStruct_027e0cd8_0C_001 98%
This commit is contained in:
@@ -39,6 +39,16 @@ union Vec2s {
|
||||
}
|
||||
|
||||
Vec2s() {}
|
||||
|
||||
Vec2s(Vec2s *from) {
|
||||
#if __MWERKS__
|
||||
this->coords = from->coords;
|
||||
#else
|
||||
this->x = from->x;
|
||||
this->y = from->y;
|
||||
#endif
|
||||
}
|
||||
|
||||
Vec2s(s16 X, s16 Y) {
|
||||
x = X;
|
||||
y = Y;
|
||||
|
||||
Reference in New Issue
Block a user