diff options
| author | Ray <[email protected]> | 2017-05-08 02:47:44 +0200 |
|---|---|---|
| committer | Ray <[email protected]> | 2017-05-08 02:47:44 +0200 |
| commit | 822c2ddad59e9839aeb029f5a3dc26681188612b (patch) | |
| tree | d5a0bdd33a30bd1bf4c9a9f8a1a80f98f5d34b7d /src/rlgl.h | |
| parent | 83aba22e494ffbc78cb9cda6a8e39e82963026f4 (diff) | |
| download | raylib-822c2ddad59e9839aeb029f5a3dc26681188612b.tar.gz raylib-822c2ddad59e9839aeb029f5a3dc26681188612b.zip | |
Some defines tweaks for consistency
Diffstat (limited to 'src/rlgl.h')
| -rw-r--r-- | src/rlgl.h | 8 |
1 files changed, 3 insertions, 5 deletions
@@ -59,12 +59,10 @@ #ifndef RLGL_H #define RLGL_H -#ifndef RLGL_STANDALONE - #include "raylib.h" // Required for: Model, Shader, Texture2D, TraceLog() -#endif - -#ifdef RLGL_STANDALONE +#if defined(RLGL_STANDALONE) #define RAYMATH_STANDALONE +#else + #include "raylib.h" // Required for: Model, Shader, Texture2D, TraceLog() #endif #include "raymath.h" // Required for: Vector3, Matrix |
