-
-
Notifications
You must be signed in to change notification settings - Fork 121
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Emscripten] Add missing gamepad functions
- Loading branch information
1 parent
8f96c23
commit 7991015
Showing
2 changed files
with
16 additions
and
0 deletions.
There are no files selected for viewing
15 changes: 15 additions & 0 deletions
15
Backends/System/Emscripten/Sources/kinc/backend/gamepad.c.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#include <kinc/input/gamepad.h> | ||
|
||
const char *kinc_gamepad_vendor(int gamepad) { | ||
return "None"; | ||
} | ||
|
||
const char *kinc_gamepad_product_name(int gamepad) { | ||
return "Gamepad"; | ||
} | ||
|
||
bool kinc_gamepad_connected(int gamepad) { | ||
return false; | ||
} | ||
|
||
void kinc_gamepad_rumble(int gamepad, float left, float right) {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters