diff options
| author | MegaMech <MegaMech@users.noreply.github.com> | 2025-06-20 06:43:48 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-06-20 06:43:48 -0600 |
| commit | 2126c94a0ebac40d5390cbd99c582977aedd5c44 (patch) | |
| tree | 09323df1408a911b0e81b3cd769a5a813b8e6cc0 | |
| parent | d8c2b1b5c8f0bf0a548aa1132723652c915fb1e6 (diff) | |
Update Course.cpp (#235)0.9.9
| -rw-r--r-- | src/engine/courses/Course.cpp | 6 |
1 files 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; } |
