mirror of
https://github.com/raysan5/raylib.git
synced 2025-09-11 22:08:15 +00:00
REVIEWED: Libs include order
This commit is contained in:
@@ -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)
|
||||
|
Reference in New Issue
Block a user