Ver código fonte

Merge branch 'master' of https://github.com/raysan5/raylib

pull/518/head
Ray 7 anos atrás
pai
commit
9393d1d76f
1 arquivos alterados com 1 adições e 6 exclusões
  1. +1
    -6
      src/core.c

+ 1
- 6
src/core.c Ver arquivo

@ -1307,12 +1307,7 @@ bool IsFileExtension(const char *fileName, const char *ext)
{
bool result = false;
const char *fileExt;
if ((fileExt = strrchr(fileName, '.')) != NULL)
{
if (strcmp(fileExt, ext) == 0) result = true;
}
if ((fileExt = strrchr(fileName, '.')) != NULL)
{
#if defined(_WIN32)

Carregando…
Cancelar
Salvar