Ver código fonte

REVIEWED: `TextToPascal()`, fix https://github.com/raylibtech/rtools/issues/57

pull/5232/head
Ray 3 dias atrás
committed by Saksham Goyal
pai
commit
ff8038b6b1
Nenhuma chave conhecida encontrada para esta assinatura no banco de dados ID da chave GPG: 287D96BB5977A168
1 arquivos alterados com 1 adições e 0 exclusões
  1. +1
    -0
      src/rtext.c

+ 1
- 0
src/rtext.c Ver arquivo

@ -1954,6 +1954,7 @@ char *TextToPascal(const char *text)
{
j++;
if ((text[j] >= 'a') && (text[j] <= 'z')) buffer[i] = text[j] - 32;
else if ((text[j] >= '0') && (text[j] <= '9')) buffer[i] = text[j];
}
}
}

Carregando…
Cancelar
Salvar