From 0bfd283526f62f2f03e90ac4881f532048304ca2 Mon Sep 17 00:00:00 2001 From: raysan5 Date: Fri, 2 Jan 2015 20:59:54 +0100 Subject: Added support for model color tint Also, added support for normals on models --- src/core.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/core.c') diff --git a/src/core.c b/src/core.c index 5ff44f89..65828c48 100644 --- a/src/core.c +++ b/src/core.c @@ -261,6 +261,8 @@ static void CommandCallback(struct android_app *app, int32_t cmd); // // Initialize Window and Graphics Context (OpenGL) void InitWindow(int width, int height, const char *title) { + TraceLog(INFO, "Initializing raylib..."); + // Store window title (could be useful...) windowTitle = title; @@ -298,6 +300,8 @@ void InitWindow(int width, int height, const char *title) // Android activity initialization void InitWindow(int width, int height, struct android_app *state) { + TraceLog(INFO, "Initializing raylib..."); + app_dummy(); screenWidth = width; -- cgit v1.2.3