mirror of
https://github.com/zeldaret/tp
synced 2026-06-09 20:50:45 -04:00
decomp some small files, do some cleanup (#42)
* remove leftover asm: JSUList.s * d_save_init: decomp * JMath/random: decomp * J3DUDL: fixup label * JAUClusterSound: decomp * c_API_controller_pad: decomp, elaborate globals/types * clang-format * don't add guards to functions.h * semantic merge of m_cpadInfo stuff * fix undef symbols Co-authored-by: Pheenoh <pheenoh@gmail.com>
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
#ifndef __JSYSTEM_JMATH_RANDOM_H__
|
||||
#define __JSYSTEM_JMATH_RANDOM_H__
|
||||
|
||||
#include "dolphin/types.h"
|
||||
|
||||
namespace JMath {
|
||||
struct TRandom_fast_ {
|
||||
u32 value;
|
||||
|
||||
TRandom_fast_(u32 value);
|
||||
};
|
||||
} // namespace JMath
|
||||
|
||||
// needed for Z2Calc.cpp
|
||||
extern "C" {
|
||||
void __ct__Q25JMath13TRandom_fast_FUl(JMath::TRandom_fast_*, u32);
|
||||
};
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user