mirror of
https://github.com/dborth/vbagx.git
synced 2024-11-01 16:35:11 +01:00
32 lines
688 B
C
32 lines
688 B
C
|
/****************************************************************************
|
||
|
* Snes9x 1.51 Nintendo Wii/Gamecube Port
|
||
|
*
|
||
|
* softdev July 2006
|
||
|
* crunchy2 May-June 2007
|
||
|
* Tantric September 2008
|
||
|
*
|
||
|
* input.h
|
||
|
*
|
||
|
* Wii/Gamecube controller management
|
||
|
***************************************************************************/
|
||
|
|
||
|
#ifndef _INPUT_H_
|
||
|
#define _INPUT_H_
|
||
|
|
||
|
#include <gccore.h>
|
||
|
|
||
|
#define PI 3.14159265f
|
||
|
#define PADCAL 50
|
||
|
|
||
|
extern unsigned int gcpadmap[];
|
||
|
extern unsigned int wmpadmap[];
|
||
|
extern unsigned int ccpadmap[];
|
||
|
extern unsigned int ncpadmap[];
|
||
|
|
||
|
s8 WPAD_StickX(u8 chan,u8 right);
|
||
|
s8 WPAD_StickY(u8 chan, u8 right);
|
||
|
|
||
|
u32 GetJoy();
|
||
|
|
||
|
#endif
|