summaryrefslogtreecommitdiffhomepage
path: root/examples/core
diff options
context:
space:
mode:
authorMichaelFiber <[email protected]>2023-09-07 11:42:28 -0400
committerGitHub <[email protected]>2023-09-07 17:42:28 +0200
commit18e9784c6d2f05ea82d5be0b86913b870e4fcf88 (patch)
tree6b15d827857472a4fbc9bf2c00be8bebbf25dba5 /examples/core
parent8cf76ec113a049d60aa5d221543d35b8ddf25dcc (diff)
downloadraylib-18e9784c6d2f05ea82d5be0b86913b870e4fcf88.tar.gz
raylib-18e9784c6d2f05ea82d5be0b86913b870e4fcf88.zip
Remove PLATFORM_RPI (#3232)
* Remove PLATFORM_RPI * remove build artifacts --------- Co-authored-by: MichaelFiber <[email protected]> Co-authored-by: Ray <[email protected]>
Diffstat (limited to 'examples/core')
-rw-r--r--examples/core/core_basic_window_web.c2
-rw-r--r--examples/core/core_input_gamepad.c9
-rw-r--r--examples/core/core_vr_simulator.c2
3 files changed, 4 insertions, 9 deletions
diff --git a/examples/core/core_basic_window_web.c b/examples/core/core_basic_window_web.c
index 7d83254a..e0e1f9fb 100644
--- a/examples/core/core_basic_window_web.c
+++ b/examples/core/core_basic_window_web.c
@@ -2,7 +2,7 @@
*
* raylib [core] example - Basic window (adapted for HTML5 platform)
*
-* NOTE: This example is prepared to compile for PLATFORM_WEB, PLATFORM_DESKTOP and PLATFORM_RPI
+* NOTE: This example is prepared to compile for PLATFORM_WEB, and PLATFORM_DESKTOP
* As you will notice, code structure is slightly diferent to the other examples...
* To compile it for PLATFORM_WEB just uncomment #define PLATFORM_WEB at beginning
*
diff --git a/examples/core/core_input_gamepad.c b/examples/core/core_input_gamepad.c
index 1eb516e8..c28ff1f9 100644
--- a/examples/core/core_input_gamepad.c
+++ b/examples/core/core_input_gamepad.c
@@ -21,13 +21,8 @@
// 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"
-#else
- #define XBOX360_NAME_ID "Xbox 360 Controller"
- #define PS3_NAME_ID "PLAYSTATION(R)3 Controller"
-#endif
+#define XBOX360_NAME_ID "Xbox 360 Controller"
+#define PS3_NAME_ID "PLAYSTATION(R)3 Controller"
//------------------------------------------------------------------------------------
// Program main entry point
diff --git a/examples/core/core_vr_simulator.c b/examples/core/core_vr_simulator.c
index bc69cc69..fc2dee6b 100644
--- a/examples/core/core_vr_simulator.c
+++ b/examples/core/core_vr_simulator.c
@@ -15,7 +15,7 @@
#if defined(PLATFORM_DESKTOP)
#define GLSL_VERSION 330
-#else // PLATFORM_RPI, PLATFORM_ANDROID, PLATFORM_WEB
+#else // PLATFORM_ANDROID, PLATFORM_WEB
#define GLSL_VERSION 100
#endif