From 736d5920c7d45e5e089cbda4d80a01292112e575 Mon Sep 17 00:00:00 2001 From: raysan5 Date: Thu, 1 Apr 2021 20:22:52 +0200 Subject: [PATCH] Update core_input_gamepad.c --- examples/core/core_input_gamepad.c | 10 +++++----- 1 file 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)