[examples] fix: use quotation marks when including raylib.h (#4821)

...so it will always prioritize local version of raylib instead of
system-wide installations, which is a huge problem when testing any
changes done locally to raylib as it might cause silent mismatch issues.
There were only 4 examples affected by this issue which were using
`#include <raylib.h>`. Other examples use proper `#include "raylib.h"`

Fixes: https://github.com/raysan5/raylib/issues/4820
This commit is contained in:
sleeptightAnsiC 2025-03-07 20:24:53 +01:00 committed by GitHub
parent 590f793755
commit f430d72a8c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 4 additions and 4 deletions

View file

@ -15,7 +15,7 @@
*
********************************************************************************************/
#include <raylib.h>
#include "raylib.h"
#define RAYGUI_IMPLEMENTATION
#include "raygui.h" // Required for GUI controls

View file

@ -15,7 +15,7 @@
*
********************************************************************************************/
#include <raylib.h>
#include "raylib.h"
#define RAYGUI_IMPLEMENTATION
#include "raygui.h" // Required for GUI controls

View file

@ -15,7 +15,7 @@
*
********************************************************************************************/
#include <raylib.h>
#include "raylib.h"
#define RAYGUI_IMPLEMENTATION
#include "raygui.h" // Required for GUI controls