Selaa lähdekoodia

Merge pull request #4958 from M374LX/unused-var

Remove unused variable
pull/4963/head
Ray 7 kuukautta sitten
committed by GitHub
vanhempi
commit
f9fa63366c
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. +1
    -1
      src/rcore.c

+ 1
- 1
src/rcore.c Näytä tiedosto

@ -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]];

Ladataan…
Peruuta
Tallenna