aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorraysan5 <raysan5@gmail.com>2019-01-03 13:55:59 +0100
committerraysan5 <raysan5@gmail.com>2019-01-03 13:55:59 +0100
commit644eddda11acefe38329cd8fea5b25c1a63ef778 (patch)
treeee9d6423b8f605574fa6cd019b19a7e0e38a8ac0 /src
parentd427f17210170b4ae0f185208db504264056d3c1 (diff)
downloadraylib-644eddda11acefe38329cd8fea5b25c1a63ef778.tar.gz
raylib-644eddda11acefe38329cd8fea5b25c1a63ef778.zip
REMOVED: ShowLogo()
Same functionality could be achieved using FLAGS... but also considering removing raylib logo animation...
Diffstat (limited to 'src')
-rw-r--r--src/core.c6
-rw-r--r--src/raylib.h1
2 files changed, 0 insertions, 7 deletions
diff --git a/src/core.c b/src/core.c
index f2edc1b6..2d607c3a 100644
--- a/src/core.c
+++ b/src/core.c
@@ -1461,12 +1461,6 @@ Color Fade(Color color, float alpha)
return (Color){color.r, color.g, color.b, (unsigned char)(255.0f*alpha)};
}
-// Activate raylib logo at startup (can be done with flags)
-void ShowLogo(void)
-{
- showLogo = true;
-}
-
// Setup window configuration flags (view FLAGS)
void SetConfigFlags(unsigned char flags)
{
diff --git a/src/raylib.h b/src/raylib.h
index c6156c10..e422e6bc 100644
--- a/src/raylib.h
+++ b/src/raylib.h
@@ -878,7 +878,6 @@ RLAPI Color GetColor(int hexValue); // Returns a C
RLAPI Color Fade(Color color, float alpha); // Color fade-in or fade-out, alpha goes from 0.0f to 1.0f
// Misc. functions
-RLAPI void ShowLogo(void); // Activate raylib logo at startup (can be done with flags)
RLAPI void SetConfigFlags(unsigned char flags); // Setup window configuration flags (view FLAGS)
RLAPI void SetTraceLog(unsigned char types); // Enable trace log message types (bit flags based)
RLAPI void SetTraceLogCallback(TraceLogCallback callback); // Set a trace log callback to enable custom logging bypassing raylib's one