Il sito funziona meglio con JavaScript.
Home
Esplora
Aiuto
Accedi
Archivist
/
raylib-src
mirror da
https://github.com/raysan5/raylib
Segui
1
Vota
0
Forka
0
Codice
Problemi
0
Rilasci
24
Wiki
Attività
Sfoglia il codice sorgente
REVIEWED: `TextToPascal()`, fix
https://github.com/raylibtech/rtools/issues/57
pull/5232/head
Ray
3 giorni fa
committed by
Saksham Goyal
parent
37d5671c41
commit
ff8038b6b1
Non sono state trovate chiavi note per questa firma nel database
ID Chiave GPG:
287D96BB5977A168
1 ha cambiato i file
con
1 aggiunte
e
0 eliminazioni
Visualizzazione separata
Opzioni Diff
Mostra statistiche
Scarica il file Patch
Scarica il file Diff
+1
-0
src/rtext.c
+ 1
- 0
src/rtext.c
Vedi File
@ -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
]
;
}
}
}
Scrivi
Anteprima
Caricamento…
Annulla
Salva