Ver a proveniência

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

pull/5232/head
Ray há 3 dias
committed by Saksham Goyal
ascendente
cometimento
ff8038b6b1
Não foi encontrada uma chave conhecida para esta assinatura, na base de dados ID da chave GPG: 287D96BB5977A168
1 ficheiros alterados com 1 adições e 0 eliminações
  1. +1
    -0
      src/rtext.c

+ 1
- 0
src/rtext.c Ver ficheiro

@ -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
Guardar