From f76a00adc1f4bc8c92187bf38fa1183f8626fc46 Mon Sep 17 00:00:00 2001 From: raysan5 Date: Sat, 19 Apr 2014 16:54:48 +0200 Subject: Code used to test some features (and resources) --- tests/test_image_loading.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/test_image_loading.c') diff --git a/tests/test_image_loading.c b/tests/test_image_loading.c index c554a394..7376bb60 100644 --- a/tests/test_image_loading.c +++ b/tests/test_image_loading.c @@ -2,7 +2,7 @@ * * raylib test - Testing LoadImage() and CreateTexture() * -* This example has been created using raylib 1.0 (www.raylib.com) +* This test has been created using raylib 1.0 (www.raylib.com) * raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details) * * Copyright (c) 2013 Ramon Santamaria (Ray San - raysan@raysanweb.com) @@ -23,7 +23,7 @@ int main() // NOTE: Textures MUST be loaded after Window initialization (OpenGL context is required) Image img = LoadImage("resources/raylib_logo.png"); - Texture2D texture = CreateTexture(img); + Texture2D texture = CreateTexture(img, false); UnloadImage(img); //--------------------------------------------------------------------------------------- -- cgit v1.2.3