mirror of https://github.com/raysan5/raylib
REVIEWED: Libs include order
This commit is contained in:
parent
f93d0ff9bc
commit
cfffa74f96
|
@ -37,12 +37,12 @@
|
|||
|
||||
#include "raylib.h"
|
||||
|
||||
#include "rlgl.h"
|
||||
#include "utils.h" // Required for: TRACELOG() macros
|
||||
|
||||
#include "rlgl.h" // Required for: graphics layer functionality
|
||||
|
||||
#define RAYMATH_IMPLEMENTATION
|
||||
#include "raymath.h"
|
||||
|
||||
#include "utils.h" // Required for: TRACELOG() macros
|
||||
#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()]
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue