Skip to content

Commit

Permalink
REVIEWED: Libs include order
Browse files Browse the repository at this point in the history
  • Loading branch information
raysan5 committed Oct 9, 2023
1 parent f93d0ff commit cfffa74
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions src/rcore.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,12 @@

#include "raylib.h"

#include "rlgl.h"
#include "utils.h" // Required for: TRACELOG() macros

#define RAYMATH_IMPLEMENTATION
#include "raymath.h"
#include "rlgl.h" // Required for: graphics layer functionality

#include "utils.h" // Required for: TRACELOG() macros
#define RAYMATH_IMPLEMENTATION
#include "raymath.h" // Required for: Vector2/Vector3/Matrix functionality

#include <stdlib.h> // Required for: srand(), rand(), atexit()
#include <stdio.h> // Required for: sprintf() [Used in OpenURL()]
Expand Down
2 changes: 1 addition & 1 deletion src/utils.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
#include <android/asset_manager.h> // Required for: AAssetManager
#endif

#if defined(SUPPORT_TRACELOG) && !defined(TRACELOG)
#if defined(SUPPORT_TRACELOG)
#define TRACELOG(level, ...) TraceLog(level, __VA_ARGS__)

#if defined(SUPPORT_TRACELOG_DEBUG)
Expand Down

0 comments on commit cfffa74

Please sign in to comment.