mirror of
https://github.com/zeldaret/oot
synced 2026-09-02 18:02:49 -04:00
Add names to all typedef'd structs, unions, and enums (#2028)
* Add names to all typedef'd structs, unions, and enums * wtf vs code * Use a better regex
This commit is contained in:
+2
-2
@@ -5,13 +5,13 @@
|
||||
|
||||
#define RUMBLE_MAX_REQUESTS 64
|
||||
|
||||
typedef enum {
|
||||
typedef enum RumbleState {
|
||||
RUMBLE_STATE_CLEAR,
|
||||
RUMBLE_STATE_RUNNING,
|
||||
RUMBLE_STATE_RESET
|
||||
} RumbleState;
|
||||
|
||||
typedef struct {
|
||||
typedef struct RumbleMgr {
|
||||
/* 0x000 */ u8 rumbleEnable[MAXCONTROLLERS];
|
||||
/* 0x004 */ u8 reqStrengths[RUMBLE_MAX_REQUESTS]; // Source strength modulated by distance to the source
|
||||
/* 0x044 */ u8 reqDurations[RUMBLE_MAX_REQUESTS]; // Duration until decreaseRate kicks in
|
||||
|
||||
Reference in New Issue
Block a user