diff options
| author | Sebastian <sebastian@sebsite.pw> | 2022-03-28 17:27:59 -0400 |
|---|---|---|
| committer | Drew DeVault <sir@cmpwn.com> | 2022-03-29 09:43:26 +0200 |
| commit | 769a28d97890773cf6087254270eba0fdfe98038 (patch) | |
| tree | c60709616b70883087fae5e7c91f63aae5c4c6cc | |
| parent | refactor names from e.g. sdl2::init() to sdl2::SDL_Init() (diff) | |
| download | hare-chip8-769a28d97890773cf6087254270eba0fdfe98038.tar.gz | |
Rename SDL_GameControllerBUtton to SDL_GameControllerButton
Signed-off-by: Sebastian <sebastian@sebsite.pw>
| -rw-r--r-- | sdl2/gamecontroller.ha | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sdl2/gamecontroller.ha b/sdl2/gamecontroller.ha index 113bb37..1ce9384 100644 --- a/sdl2/gamecontroller.ha +++ b/sdl2/gamecontroller.ha @@ -23,7 +23,7 @@ export type SDL_GameControllerAxis = enum u8 { }; // The list of buttons available from a controller -export type SDL_GameControllerBUtton = enum u8 { +export type SDL_GameControllerButton = enum u8 { INVALID = 255, A = 0, B, |
