Explorar el Código

Merge pull request #749 from Syphonx/master

LoadBMFont filepath fix
pull/755/head
Ray hace 5 años
cometido por GitHub
padre
commit
dde99f45d9
No se encontró ninguna clave conocida en la base de datos para esta firma ID de clave GPG: 4AEE18F83AFDEB23
Se han modificado 1 ficheros con 4 adiciones y 0 borrados
  1. +4
    -0
      src/text.c

+ 4
- 0
src/text.c Ver fichero

@ -1406,6 +1406,10 @@ static Font LoadBMFont(const char *fileName)
char *lastSlash = NULL;
lastSlash = strrchr(fileName, '/');
if (lastSlash == NULL)
{
lastSlash = strrchr(fileName, '\\');
}
// NOTE: We need some extra space to avoid memory corruption on next allocations!
texPath = malloc(strlen(fileName) - strlen(lastSlash) + strlen(texFileName) + 4);

Cargando…
Cancelar
Guardar