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 `IsKeyPressedRepeat()`
#3248
pull/3248/head
Ray
1 year ago
parent
b3f82a148a
commit
dfd0436428
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
src/rcore.c
+ 1
- 1
src/rcore.c
View File
@ -3761,7 +3761,7 @@ bool IsKeyPressed(int key)
bool
IsKeyPressedRepeat
(
int
key
)
{
if
(
CORE
.
Input
.
Keyboard
.
keyRepeatInFrame
[
key
]
=
=
1
)
return
true
;
else
return
tru
e
;
else
return
fals
e
;
}
/
/
Check
if
a
key
is
being
pressed
(
key
held
down
)
Write
Preview
Loading…
Cancel
Save