瀏覽代碼

Remove unused variable

pull/4958/head
M374LX 1 周之前
父節點
當前提交
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]];

Loading…
取消
儲存