diff options
| author | Ray <[email protected]> | 2023-10-10 11:59:41 +0200 |
|---|---|---|
| committer | Ray <[email protected]> | 2023-10-10 11:59:41 +0200 |
| commit | 101a9b04458a38413a29a11f22e6c8e0a472a75b (patch) | |
| tree | 8ae202d52d171175c0a0822da84f9a300ccb032b /src/rcore_android.c | |
| parent | b94e6290a4e5e96196e23d66a480cdf9d707c380 (diff) | |
| download | raylib-101a9b04458a38413a29a11f22e6c8e0a472a75b.tar.gz raylib-101a9b04458a38413a29a11f22e6c8e0a472a75b.zip | |
Added comments and review some functions #3313
Diffstat (limited to 'src/rcore_android.c')
| -rw-r--r-- | src/rcore_android.c | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/src/rcore_android.c b/src/rcore_android.c index 6b43b78b..a9fc5fb9 100644 --- a/src/rcore_android.c +++ b/src/rcore_android.c @@ -635,17 +635,10 @@ void OpenURL(const char *url) // Module Functions Definition: Inputs //---------------------------------------------------------------------------------- -// Set a custom key to exit program -void SetExitKey(int key) -{ - TRACELOG(LOG_WARNING, "SetExitKey() not implemented on target platform"); -} - // Get gamepad internal name id const char *GetGamepadName(int gamepad) { - TRACELOG(LOG_WARNING, "GetGamepadName() not implemented on target platform"); - return NULL; + return CORE.Input.Gamepad.name[gamepad]; } // Get gamepad axis count |
