mirror of
https://github.com/zeldaret/tp
synced 2026-06-07 12:07:34 -04:00
a6e76c0841
* some wii OS fixes * remove old dol2asm comments * remove dol2asm.h * remove function address comments * normalize ATTRIBUTE_ALIGN usage * DECL_WEAK macro * fix gcc attribute weak macro * wrap more mwcc specific things in ifdefs * fixes * fix revo sdk version flags * fixes
15 lines
200 B
C++
15 lines
200 B
C++
#ifndef J3DUD_H
|
|
#define J3DUD_H
|
|
|
|
#include "dolphin/types.h"
|
|
|
|
namespace J3DUD {
|
|
inline f32 JMAAbs(f32 x) {
|
|
#ifdef __MWERKS__
|
|
return __fabsf(x);
|
|
#endif
|
|
}
|
|
}
|
|
|
|
#endif /* J3DUD_H */
|