From 43b13d623be7bf4773d399af2efffaa76a2113a6 Mon Sep 17 00:00:00 2001 From: raysan5 Date: Tue, 28 Jan 2014 21:21:29 +0100 Subject: Update to version 1.0.5 Check CHANGELOG for changes --- examples/ex06b_logo_anim.c | 6 ------ 1 file changed, 6 deletions(-) (limited to 'examples') diff --git a/examples/ex06b_logo_anim.c b/examples/ex06b_logo_anim.c index 223801c5..d4dd9fde 100644 --- a/examples/ex06b_logo_anim.c +++ b/examples/ex06b_logo_anim.c @@ -11,12 +11,6 @@ #include "raylib.h" -// Useful function for fade-ins and fade-outs -Color Fade(Color col, float alpha) -{ - return (Color){col.r, col.g, col.b, col.a*alpha}; -} - int main() { // Initialization -- cgit v1.2.3