Fix 32 bit (#697)

* try x86

* ci: uniform build-linux-release-docker and their x86

* Update main.yml

* fix animation

Co-Authored-By: Alessio Tosto <rinnegatamante@gmail.com>

* add explanation

* add windows 32 in release

* Update windows-compile.yml

* fix windows compilation

* fix win32 windows

* Update libultraship

---------

Co-authored-by: Alessio Tosto <rinnegatamante@gmail.com>
This commit is contained in:
coco875
2026-05-03 02:13:30 +02:00
committed by GitHub
parent 40d4f12580
commit e2cf6ecbb4
13 changed files with 431 additions and 74 deletions
+9 -1
View File
@@ -166,7 +166,15 @@ struct RailroadCrossing {
/* 0x02 */ s16 flags;
/* 0x04 */ s16 someTimer;
/* 0x06 */ s16 crossingId; // unused now
/* 0x08 */ void* crossingTrigger; // Crossing Trigger Class
union {
struct {
/* 0x08 */ void* crossingTrigger; // Crossing Trigger Class
};
struct { // original field in actors
/* 0x08 */ f32 unk_08;
/* 0x0C */ f32 boundingBoxSize;
};
};
/* 0x10 */ Vec3s rot;
/* 0x16 */ s16 unk_16;
/* 0x18 */ Vec3f pos;