aboutsummaryrefslogtreecommitdiff
path: root/src/raylib.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/raylib.h')
-rw-r--r--src/raylib.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/raylib.h b/src/raylib.h
index 181be1fc..d7087e87 100644
--- a/src/raylib.h
+++ b/src/raylib.h
@@ -624,14 +624,16 @@ typedef enum {
// This is here just for error checking
GAMEPAD_BUTTON_UNKNOWN = 0,
- // This is normally [A,B,X,Y]/[Circle,Triangle,Square,Cross]
- // No support for 6 button controllers though..
+ // This is normally a DPAD
GAMEPAD_BUTTON_LEFT_FACE_UP,
GAMEPAD_BUTTON_LEFT_FACE_RIGHT,
GAMEPAD_BUTTON_LEFT_FACE_DOWN,
GAMEPAD_BUTTON_LEFT_FACE_LEFT,
- // This is normally a DPAD
+ // This normally corresponds with PlayStation and Xbox controllers
+ // XBOX: [Y,X,A,B]
+ // PS3: [Triangle,Square,Cross,Circle]
+ // No support for 6 button controllers though..
GAMEPAD_BUTTON_RIGHT_FACE_UP,
GAMEPAD_BUTTON_RIGHT_FACE_RIGHT,
GAMEPAD_BUTTON_RIGHT_FACE_DOWN,