diff options
| author | coco875 <59367621+coco875@users.noreply.github.com> | 2026-05-03 02:13:30 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-05-03 02:13:30 +0200 |
| commit | e2cf6ecbb44489fd4cebdc6cdf95430338c5df15 (patch) | |
| tree | b81109d3c7d10e3bdd16a75ff47aafb51b28f3de /src/racing | |
| parent | 40d4f12580b02fe440709f06cf6f4cbbfd48de2e (diff) | |
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>
Diffstat (limited to 'src/racing')
| -rw-r--r-- | src/racing/render_courses.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/racing/render_courses.c b/src/racing/render_courses.c index c5cdf7e5f..97a8162f8 100644 --- a/src/racing/render_courses.c +++ b/src/racing/render_courses.c @@ -79,7 +79,7 @@ void parse_track_displaylists(TrackSections* asset) { if (addr == NULL) { printf("Warning: Could not find resource for section %d with crc 0x%llX\n", section->sectionId, section->crc); - addr = (void*) section->crc; + addr = section->model; } generate_collision_mesh(addr, section->surfaceType, section->sectionId); section++; |
