From c4f76975b3e722dbcad83b21458fc62cbd35041c Mon Sep 17 00:00:00 2001 From: enthusiasticimagination <159590521+enthusiasticimagination@users.noreply.github.com> Date: Sun, 11 Feb 2024 18:23:00 +0000 Subject: [PATCH] Remove mode LOCKOUT_POST_MODE This mode is settable via the WebSocket UI but doesn't do anything any more. Fixes #67. --- include/orgasm_control.h | 1 - src/orgasm_control.c | 3 +-- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/include/orgasm_control.h b/include/orgasm_control.h index 6e7d647d..96da3ac4 100644 --- a/include/orgasm_control.h +++ b/include/orgasm_control.h @@ -15,7 +15,6 @@ typedef enum orgasm_output_mode { OC_MANUAL_CONTROL, OC_AUTOMAITC_CONTROL, OC_ORGASM_MODE, - OC_LOCKOUT_POST_MODE, _OC_MODE_MAX, _OC_MODE_ERROR = -1 } orgasm_output_mode_t; diff --git a/src/orgasm_control.c b/src/orgasm_control.c index 6accf72a..c377557f 100644 --- a/src/orgasm_control.c +++ b/src/orgasm_control.c @@ -21,7 +21,6 @@ static const char* orgasm_output_mode_str[] = { "MANUAL_CONTROL", "AUTOMAITC_CONTROL", "ORGASM_MODE", - "LOCKOUT_POST_MODE", }; static struct { @@ -601,4 +600,4 @@ oc_bool_t orgasm_control_isMenuLocked() { void orgasm_control_lockMenuNow(oc_bool_t value) { post_orgasm_state.menu_is_locked = value; -} \ No newline at end of file +}