From 3d41c1b6cd5e42e2334798fe6af9394a93c89713 Mon Sep 17 00:00:00 2001 From: raysan5 Date: Wed, 25 Mar 2020 19:38:55 +0100 Subject: [PATCH] Minor tweaks --- examples/models/models_animation.c | 1 - src/core.c | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/examples/models/models_animation.c b/examples/models/models_animation.c index 2aa321cf7..9e611b669 100644 --- a/examples/models/models_animation.c +++ b/examples/models/models_animation.c @@ -37,7 +37,6 @@ int main(void) camera.fovy = 45.0f; // Camera field-of-view Y camera.type = CAMERA_PERSPECTIVE; // Camera mode type - Model model = LoadModel("resources/guy/guy.iqm"); // Load the animated model mesh and basic data Texture2D texture = LoadTexture("resources/guy/guytex.png"); // Load model texture and set material SetMaterialTexture(&model.materials[0], MAP_DIFFUSE, texture); // Set model material map texture diff --git a/src/core.c b/src/core.c index c76f1a370..b732ad32f 100644 --- a/src/core.c +++ b/src/core.c @@ -122,7 +122,7 @@ #define RAYLIB_VERSION "3.0" #endif -#include "utils.h" // Required for: TRACELOG macros and fopen() Android mapping +#include "utils.h" // Required for: TRACELOG macros #if (defined(__linux__) || defined(PLATFORM_WEB)) && _POSIX_C_SOURCE < 199309L #undef _POSIX_C_SOURCE