mirror of
https://github.com/coop-deluxe/sm64coopdx.git
synced 2026-05-10 10:51:39 +00:00
Fix windows (again (please work))
This commit is contained in:
parent
ceac1bbb27
commit
b74e486a2d
1 changed files with 6 additions and 1 deletions
|
|
@ -13,6 +13,11 @@
|
|||
static u16 sListType = 0;
|
||||
static u16 sListIndex = 0;
|
||||
|
||||
// I don't like you Windows
|
||||
static void djui_panel_moderation_list_inspect_save(UNUSED struct DjuiBase* caller) {
|
||||
moderation_list_save();
|
||||
}
|
||||
|
||||
static void djui_panel_moderation_list_inspect_action_exit(UNUSED struct DjuiBase* caller) {
|
||||
djui_panel_back_by(2);
|
||||
djui_panel_moderation_list_reload(NULL);
|
||||
|
|
@ -87,7 +92,7 @@ void djui_panel_moderation_list_inspect_create(struct DjuiBase* caller) {
|
|||
djui_text_set_drop_shadow(reasonText, 64, 64, 64, 100);
|
||||
}
|
||||
|
||||
djui_checkbox_create(body, DLANG(MODERATION, PERMANENT), &entry->permanent, moderation_list_save);
|
||||
djui_checkbox_create(body, DLANG(MODERATION, PERMANENT), &entry->permanent, djui_panel_moderation_list_inspect_save);
|
||||
|
||||
for (u8 i = 0; i < MODERATION_ACTION_COUNT; i++) {
|
||||
if (!list->actions[i]) continue;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue