Este site funciona melhor com JavaScript.
Página inicial
Explorar
Ajuda
Acessar
Archivist
/
raylib-src
espelhamento de
https://github.com/raysan5/raylib
Observar
1
Favorito
0
Fork
0
Código
Issues
0
Versões
24
Wiki
Atividade
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
37d5671c41
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
Visão dividida
Opções de diferenças
Mostrar estatísticas
Baixar arquivo de patch
Baixar arquivo de diferenças
+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
]
;
}
}
}
Escrever
Pré-visualização
Carregando…
Cancelar
Salvar