diff --git a/README.md b/README.md index b5056bb..68a2fa9 100644 --- a/README.md +++ b/README.md @@ -33,14 +33,6 @@ cd envision ./dist/appimage/build_appimage.sh ``` - - # Common issues ## NOSUID with systemd-homed diff --git a/src/ui/feature_flags.rs b/src/ui/feature_flags.rs deleted file mode 100644 index 3697538..0000000 --- a/src/ui/feature_flags.rs +++ /dev/null @@ -1,11 +0,0 @@ -use lazy_static::lazy_static; -use std::env; - -fn get_ff_libmonado_device_enumeration_enabled() -> bool { - env::var("ENVISION_FF_USE_LIBMONADO").unwrap_or_default() == "1" -} - -lazy_static! { - pub static ref FF_LIBMONADO_DEVICE_ENUMERATION_ENABLED: bool = - get_ff_libmonado_device_enumeration_enabled(); -} diff --git a/src/ui/mod.rs b/src/ui/mod.rs index 0fb674e..009259e 100644 --- a/src/ui/mod.rs +++ b/src/ui/mod.rs @@ -6,7 +6,6 @@ pub mod debug_view; pub mod devices_box; pub mod factories; pub mod fbt_config_editor; -pub mod feature_flags; pub mod install_wivrn_box; pub mod job_worker; pub mod libsurvive_setup_window;