Parcourir la source

Reviewed `IsKeyPressedRepeat()` #3248

pull/3248/head
Ray il y a 1 an
Parent
révision
dfd0436428
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. +1
    -1
      src/rcore.c

+ 1
- 1
src/rcore.c Voir le fichier

@ -3761,7 +3761,7 @@ bool IsKeyPressed(int key)
bool IsKeyPressedRepeat(int key)
{
if (CORE.Input.Keyboard.keyRepeatInFrame[key] == 1) return true;
else return true;
else return false;
}
// Check if a key is being pressed (key held down)

Chargement…
Annuler
Enregistrer