Bump raylib to master (#278)

This commit is contained in:
Nikolas 2025-08-31 16:42:27 +02:00
parent b44a355a81
commit acd5507b0e
Failed to generate hash of commit
6 changed files with 58 additions and 20 deletions

1
lib/rlgl.h vendored
View file

@ -3243,6 +3243,7 @@ unsigned int rlLoadTexture(const void *data, int width, int height, int format,
int mipWidth = width;
int mipHeight = height;
int mipOffset = 0; // Mipmap data offset, only used for tracelog
(void)mipOffset; // Used to avoid gcc warnings about unused variable
// NOTE: Added pointer math separately from function to avoid UBSAN complaining
unsigned char *dataPtr = NULL;