mirror of
https://github.com/raysan5/raylib.git
synced 2025-09-05 19:08:13 +00:00
Remove unused variable
This commit is contained in:
@@ -2625,7 +2625,7 @@ unsigned char *DecodeDataBase64(const char *text, int *outputSize)
|
||||
if (decodedData == NULL) return NULL;
|
||||
|
||||
int outputCount = 0;
|
||||
for (int i = 0, j = 0; i < dataSize;)
|
||||
for (int i = 0; i < dataSize;)
|
||||
{
|
||||
// Every 4 sixtets must generate 3 octets
|
||||
unsigned int sixtetA = base64DecodeTable[(unsigned char)text[i]];
|
||||
|
Reference in New Issue
Block a user