Skip to content

Commit 242beef

Browse files
author
Gideon Serfontein
committed
Testing mouse trail building
1 parent c398e83 commit 242beef

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

examples/shapes/shapes_mouse_trail.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
#include "raylib.h"
2-
#include "raymath.h"
3-
41
/*******************************************************************************************
52
*
63
* raylib [shapes] example - Draw a mouse trail (position history)
@@ -18,6 +15,9 @@
1815
*
1916
********************************************************************************************/
2017

18+
#include "raylib.h"
19+
#include "raymath.h"
20+
2121
// Define the maximum number of positions to store in the trail
2222
#define MAX_TRAIL_LENGTH 30
2323

tools/rexm/rexm.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2372,7 +2372,7 @@ static void UpdateWebMetadata(const char *exHtmlPath, const char *exFilePath)
23722372

23732373
char exName[64] = { 0 }; // Example name: fileName without extension
23742374
char exCategory[16] = { 0 }; // Example category: core, shapes, text, textures, models, audio, shaders
2375-
char exDescription[512] = { 0 }; // Example description: example text line #3
2375+
char exDescription[256] = { 0 }; // Example description: example text line #3
23762376
char exTitle[64] = { 0 }; // Example title: fileName without extension, replacing underscores by spaces
23772377

23782378
// Get example name: replace underscore by spaces

0 commit comments

Comments
 (0)