Files
tp/include/dolphin/pad/Padclamp.h
T
TakaRikka f070ee948f dolphin lib work (#237)
* getLayerNo_common_common finally matched

* dolphin ai / ar / card work from prime decomp

* work on dolphin dvd / dsp / db

* more dolphin os work

* si work

* remove asm

* build fix
2023-01-02 12:20:10 -07:00

31 lines
471 B
C

#ifndef PADCLAMP_H
#define PADCLAMP_H
#include "dolphin/types.h"
#ifdef __cplusplus
extern "C" {
#endif
typedef struct PADClampRegion {
u8 minTrigger;
u8 maxTrigger;
s8 minStick;
s8 maxStick;
s8 xyStick;
s8 minSubstick;
s8 maxSubstick;
s8 xySubstick;
s8 radStick;
s8 radSubstick;
} PADClampRegion;
void PADClamp(PADStatus* status);
void PADClampCircle(PADStatus* status);
#ifdef __cplusplus
};
#endif
#endif /* PADCLAMP_H */