ソースを参照

Remove unused variable

pull/4958/head
M374LX 4ヶ月前
コミット
299f5350a4
1個のファイルの変更1行の追加1行の削除
  1. +1
    -1
      src/rcore.c

+ 1
- 1
src/rcore.c ファイルの表示

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

読み込み中…
キャンセル
保存