Adding GetKeyName(int key) (WIP) (#4161)

This commit is contained in:
MrScautHD 2024-07-16 14:00:00 +02:00 committed by GitHub
parent 5ede47618b
commit 576bee5cce
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 47 additions and 0 deletions

View file

@ -628,6 +628,13 @@ void SetMouseCursor(int cursor)
TRACELOG(LOG_WARNING, "SetMouseCursor() not implemented on target platform");
}
// Get physical key name.
const char *GetKeyName(int key)
{
TRACELOG(LOG_WARNING, "GetKeyName() not implemented on target platform");
return "";
}
// Register all input events
void PollInputEvents(void)
{