diff options
| author | sitton76 <58642183+sitton76@users.noreply.github.com> | 2025-05-19 19:14:51 -0500 |
|---|---|---|
| committer | sitton76 <58642183+sitton76@users.noreply.github.com> | 2025-05-19 19:14:51 -0500 |
| commit | 23222922e68761c6d2aeeea276afbf8c9c672eb2 (patch) | |
| tree | 843977feb2d474898648ffef25d0aa681a1cc652 /src | |
| parent | 1eba8ebc17ba71435f8d91b876c35d05f5735de0 (diff) | |
Missing includes needed for Linux.
Diffstat (limited to 'src')
| -rw-r--r-- | src/main.c | 1 | ||||
| -rw-r--r-- | src/math_util_2.c | 1 | ||||
| -rw-r--r-- | src/os/guLookAtF.c | 1 | ||||
| -rw-r--r-- | src/os/guPerspectiveF.c | 1 | ||||
| -rw-r--r-- | src/racing/skybox_and_splitscreen.c | 1 |
5 files changed, 5 insertions, 0 deletions
diff --git a/src/main.c b/src/main.c index 1b0b8a716..cd8b4f677 100644 --- a/src/main.c +++ b/src/main.c @@ -44,6 +44,7 @@ #include "buffers/gfx_output_buffer.h" #include <bridge/gfxdebuggerbridge.h> #include "enhancements/freecam/freecam.h" +#include "port/interpolation/FrameInterpolation.h" #include "engine/wasm.h" #include "port/Game.h" #include "engine/Matrix.h" diff --git a/src/math_util_2.c b/src/math_util_2.c index d9770eddb..e4fc571d5 100644 --- a/src/math_util_2.c +++ b/src/math_util_2.c @@ -15,6 +15,7 @@ #include "port/Engine.h" #include "engine/Matrix.h" +#include "port/interpolation/FrameInterpolation.h" #pragma intrinsic(sqrtf) diff --git a/src/os/guLookAtF.c b/src/os/guLookAtF.c index 4b031d818..3163b89b4 100644 --- a/src/os/guLookAtF.c +++ b/src/os/guLookAtF.c @@ -11,6 +11,7 @@ **************************************************************************/ #include "libultra_internal.h" +#include "port/interpolation/FrameInterpolation.h" void guLookAtF(float mf[4][4], float xEye, float yEye, float zEye, float xAt, float yAt, float zAt, float xUp, float yUp, float zUp) { diff --git a/src/os/guPerspectiveF.c b/src/os/guPerspectiveF.c index d02e33b20..fc65c6e80 100644 --- a/src/os/guPerspectiveF.c +++ b/src/os/guPerspectiveF.c @@ -1,4 +1,5 @@ #include "libultra_internal.h" +#include "port/interpolation/FrameInterpolation.h" void guPerspectiveF(float mf[4][4], u16* perspNorm, float fovy, float aspect, float near, float far, float scale) { float yscale; diff --git a/src/racing/skybox_and_splitscreen.c b/src/racing/skybox_and_splitscreen.c index b5c2cb305..87fa1390f 100644 --- a/src/racing/skybox_and_splitscreen.c +++ b/src/racing/skybox_and_splitscreen.c @@ -21,6 +21,7 @@ #include "engine/courses/Course.h" #include "port/Game.h" #include "math_util.h" +#include "src/enhancements/freecam/freecam.h" #include "port/interpolation/FrameInterpolation.h" Vp D_802B8880[] = { |
