This website works better with JavaScript.
Home
Explore
Help
Sign In
Archivist
/
raylib-src
mirror of
https://github.com/raysan5/raylib
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
24
Wiki
Activity
Browse Source
REVIEWED: `TextToPascal()`, fix
https://github.com/raylibtech/rtools/issues/57
pull/5232/head
Ray
4 days ago
committed by
Saksham Goyal
parent
37d5671c41
commit
ff8038b6b1
No known key found for this signature in database
GPG Key ID:
287D96BB5977A168
1 changed files
with
1 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-0
src/rtext.c
+ 1
- 0
src/rtext.c
View 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
]
;
}
}
}
Write
Preview
Loading…
Cancel
Save