diff options
| author | Jcw87 <Jcw87@users.noreply.github.com> | 2025-04-29 09:49:09 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-04-29 12:49:09 -0400 |
| commit | 5e7b59f2fe2f0a7e39d2b7ba6f9e19f3bbdf3254 (patch) | |
| tree | 07cf9ad7a5f7bf7423c0a520b8d64d024990136d /src/d/d_camera.cpp | |
| parent | eef20535ac9416dcdc8164ecb2c9d4b7bb50f365 (diff) | |
Improve compiler compatibility (#743)
* fix returns
* use standard C headers
* struct/class mismatch
* explicit this in template
* switch variable scope
* C standard compliance
* & l-value
Diffstat (limited to 'src/d/d_camera.cpp')
| -rw-r--r-- | src/d/d_camera.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/d/d_camera.cpp b/src/d/d_camera.cpp index 167d1afb..60d6e8a7 100644 --- a/src/d/d_camera.cpp +++ b/src/d/d_camera.cpp @@ -2276,7 +2276,7 @@ void dCamera_c::checkGroundInfo() { /* 8016A0F0-8016A110 .text followCamera2__9dCamera_cFl */ bool dCamera_c::followCamera2(s32 param_0) { - followCamera(param_0); + return followCamera(param_0); } /* 8016A110-8016C4F8 .text followCamera__9dCamera_cFl */ |
