From 2126c94a0ebac40d5390cbd99c582977aedd5c44 Mon Sep 17 00:00:00 2001 From: MegaMech Date: Fri, 20 Jun 2025 06:43:48 -0600 Subject: [PATCH] Update Course.cpp (#235) --- src/engine/courses/Course.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/engine/courses/Course.cpp b/src/engine/courses/Course.cpp index 8eae0cca1..2f0f1e4c4 100644 --- a/src/engine/courses/Course.cpp +++ b/src/engine/courses/Course.cpp @@ -209,17 +209,17 @@ void Course::Load() { void Course::ParseCourseSections(TrackSectionsO2R* sections, size_t size) { for (size_t i = 0; i < (size / sizeof(TrackSectionsO2R)); i++) { if (sections[i].flags & 0x8000) { - D_8015F59C = 1; + D_8015F59C = 1; // single-sided wall } else { D_8015F59C = 0; } if (sections[i].flags & 0x2000) { - D_8015F5A0 = 1; + D_8015F5A0 = 1; // surface } else { D_8015F5A0 = 0; } if (sections[i].flags & 0x4000) { - D_8015F5A4 = 1; + D_8015F5A4 = 1; // double-sided wall } else { D_8015F5A4 = 0; }