mirror of
https://github.com/zeldaret/tp
synced 2026-05-31 01:16:02 -04:00
a7edd19f16
* cleanup SSystem files * MSL_C fully matched * fix build * remove asm * reorganize MSL_C/Runtime libs into more accurate setup * little more cleanup * cleanup some MSL headers * obj_rgate OK * remove asm * some rgate documentation
13 lines
184 B
C++
13 lines
184 B
C++
#ifndef J3DUD_H
|
|
#define J3DUD_H
|
|
|
|
#include "math.h"
|
|
#include "dolphin/types.h"
|
|
|
|
namespace J3DUD {
|
|
inline f32 JMAAbs(f32 x) {
|
|
return __fabsf(x);
|
|
}
|
|
}
|
|
|
|
#endif /* J3DUD_H */ |