this should be two commits
1. renaming menu option structs and callbacks
2. hiding locked options from menus
but I forgot to commit in the middle and the changes are too intertwined to stage individually
🙁
This commit is contained in:
Shaun Inman 2023-01-29 21:31:13 -05:00
parent 04e053b228
commit 9da9b41a16
2 changed files with 105 additions and 76 deletions

View file

@ -4,7 +4,7 @@
typedef struct OptionOverride {
char* key;
char* value;
int lock; // TODO: prevent changing this value
int lock; // prevents changing this value
} OptionOverride;
typedef struct ButtonMapping {