mirror of
https://github.com/raysan5/raylib.git
synced 2025-09-21 10:48:15 +00:00
Update rmodels.c
This commit is contained in:
@@ -4555,7 +4555,7 @@ static unsigned char *DecodeBase64(char *data, int *outputLength)
|
|||||||
{
|
{
|
||||||
if (data[4*i + 3] == '=')
|
if (data[4*i + 3] == '=')
|
||||||
{
|
{
|
||||||
if (data[4*i + 2] == '=') size += 1;
|
if (data[4*i + 2] == '=') outLength += 1;
|
||||||
else outLength += 2;
|
else outLength += 2;
|
||||||
}
|
}
|
||||||
else outLength += 3;
|
else outLength += 3;
|
||||||
|
Reference in New Issue
Block a user