diff options
| author | lepelog <lepelog@users.noreply.github.com> | 2021-05-03 02:03:24 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-05-02 20:03:24 -0400 |
| commit | 8fd9f2ab5d5ba4d3fe983c77795d69e22c9fa610 (patch) | |
| tree | 01e9323e07688462a8bec633ed50006ddeaa478f /include/SSystem/SComponent | |
| parent | 3b7364d481f9951ae227017eca997377efd0d820 (diff) | |
Copy JKernel (#126)
* start JSystem
* JKRAram and JUTGamePad
* started heap and thread
* more JKernel
* mostly finished JKernel
* delete unused asm
* JKRFileFinder
* delete unused asm and match findNextFile
* format
* fix mtx_vec
Diffstat (limited to 'include/SSystem/SComponent')
| -rw-r--r-- | include/SSystem/SComponent/c_lib.h | 1 | ||||
| -rw-r--r-- | include/SSystem/SComponent/c_m3d_g_lin.h | 2 | ||||
| -rw-r--r-- | include/SSystem/SComponent/c_xyz.h | 2 |
3 files changed, 3 insertions, 2 deletions
diff --git a/include/SSystem/SComponent/c_lib.h b/include/SSystem/SComponent/c_lib.h index 9e0780aca9..8ff0092bc1 100644 --- a/include/SSystem/SComponent/c_lib.h +++ b/include/SSystem/SComponent/c_lib.h @@ -2,6 +2,7 @@ #define C_LIB_H_ #include "SSystem/SComponent/c_xyz.h" +#include "dolphin/mtx/mtx.h" #include "dolphin/types.h" void cLib_memCpy(void* dst, const void* src, unsigned long size); diff --git a/include/SSystem/SComponent/c_m3d_g_lin.h b/include/SSystem/SComponent/c_m3d_g_lin.h index f641f75a85..b858765a9c 100644 --- a/include/SSystem/SComponent/c_m3d_g_lin.h +++ b/include/SSystem/SComponent/c_m3d_g_lin.h @@ -2,8 +2,8 @@ #define C_M3D_G_LIN_H #include "SSystem/SComponent/c_xyz.h" +#include "dolphin/mtx/vec.h" #include "dolphin/types.h" -#include "mtx_vec.h" // Line class cM3dGLin { diff --git a/include/SSystem/SComponent/c_xyz.h b/include/SSystem/SComponent/c_xyz.h index 36e6a0208b..704b43ab7c 100644 --- a/include/SSystem/SComponent/c_xyz.h +++ b/include/SSystem/SComponent/c_xyz.h @@ -1,8 +1,8 @@ #ifndef C_XYZ_H #define C_XYZ_H +#include "dolphin/mtx/vec.h" #include "global.h" -#include "mtx_vec.h" struct cXyz : Vec { static const cXyz Zero; |
