diff options
| author | raysan5 <[email protected]> | 2021-04-01 20:22:52 +0200 |
|---|---|---|
| committer | raysan5 <[email protected]> | 2021-04-01 20:22:52 +0200 |
| commit | 736d5920c7d45e5e089cbda4d80a01292112e575 (patch) | |
| tree | 0920f1b46b683f3926ea03bf2db7aed96e6a6ab8 /examples | |
| parent | cdc3754449da5cf8c83843f395dd97e71a7eba30 (diff) | |
| download | raylib-736d5920c7d45e5e089cbda4d80a01292112e575.tar.gz raylib-736d5920c7d45e5e089cbda4d80a01292112e575.zip | |
Update core_input_gamepad.c
Diffstat (limited to 'examples')
| -rw-r--r-- | examples/core/core_input_gamepad.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/examples/core/core_input_gamepad.c b/examples/core/core_input_gamepad.c index f00f781f..3595329b 100644 --- a/examples/core/core_input_gamepad.c +++ b/examples/core/core_input_gamepad.c @@ -18,13 +18,13 @@ #include "raylib.h" // NOTE: Gamepad name ID depends on drivers and OS +#define XBOX360_LEGACY_NAME_ID "Xbox Controller" #if defined(PLATFORM_RPI) - #define XBOX360_NAME_ID "Microsoft X-Box 360 pad" - #define PS3_NAME_ID "PLAYSTATION(R)3 Controller" + #define XBOX360_NAME_ID "Microsoft X-Box 360 pad" + #define PS3_NAME_ID "PLAYSTATION(R)3 Controller" #else - #define XBOX360_NAME_ID "Xbox 360 Controller" - #define XBOX360_LEGACY_NAME_ID "Xbox Controller" - #define PS3_NAME_ID "PLAYSTATION(R)3 Controller" + #define XBOX360_NAME_ID "Xbox 360 Controller" + #define PS3_NAME_ID "PLAYSTATION(R)3 Controller" #endif int main(void) |
