@@ -31,8 +31,6 @@ const char* ffOptionsParseGeneralJsonConfig(FFOptionsGeneral* options, yyjson_va
3131 options -> detectVersion = yyjson_get_bool (val );
3232
3333 #if defined(__linux__ ) || defined(__FreeBSD__ ) || defined(__sun ) || defined(__OpenBSD__ ) || defined(__NetBSD__ ) || defined(__HAIKU__ )
34- else if (ffStrEqualsIgnCase (key , "escapeBedrock "))
35- options -> escapeBedrock = yyjson_get_bool (val );
3634 else if (ffStrEqualsIgnCase (key , "playerName "))
3735 ffStrbufSetS (& options - > playerName , yyjson_get_str (val ));
3836 else if (ffStrEqualsIgnCase (key , "dsForceDrm "))
@@ -76,8 +74,6 @@ bool ffOptionsParseGeneralCommandLine(FFOptionsGeneral* options, const char* key
7674 options -> detectVersion = ffOptionParseBoolean (value );
7775
7876 #if defined(__linux__ ) || defined(__FreeBSD__ ) || defined(__sun ) || defined(__OpenBSD__ ) || defined(__NetBSD__ ) || defined(__HAIKU__ )
79- else if (ffStrEqualsIgnCase (key , "-- escape - bedrock "))
80- options -> escapeBedrock = ffOptionParseBoolean (value );
8177 else if (ffStrEqualsIgnCase (key , "-- player - name "))
8278 ffOptionParseString (key , value , & options - > playerName );
8379 else if (ffStrEqualsIgnCase (key , "-- ds - force - drm "))
@@ -107,7 +103,6 @@ void ffOptionsInitGeneral(FFOptionsGeneral* options)
107103 options -> detectVersion = true;
108104
109105 #if defined(__linux__ ) || defined(__FreeBSD__ ) || defined(__sun ) || defined(__OpenBSD__ ) || defined(__NetBSD__ ) || defined(__HAIKU__ )
110- options -> escapeBedrock = true;
111106 ffStrbufInit (& options -> playerName );
112107 options -> dsForceDrm = FF_DS_FORCE_DRM_TYPE_FALSE ;
113108 #elif defined(_WIN32 )
@@ -137,9 +132,6 @@ void ffOptionsGenerateGeneralJsonConfig(FFOptionsGeneral* options, yyjson_mut_do
137132
138133 #if defined(__linux__ ) || defined(__FreeBSD__ ) || defined(__sun ) || defined(__OpenBSD__ ) || defined(__NetBSD__ ) || defined(__HAIKU__ )
139134
140- if (options -> escapeBedrock != defaultOptions .escapeBedrock )
141- yyjson_mut_obj_add_bool (doc , obj , "escapeBedrock" , options -> escapeBedrock );
142-
143135 if (!ffStrbufEqual (& options -> playerName , & defaultOptions .playerName ))
144136 yyjson_mut_obj_add_strbuf (doc , obj , "playerName" , & options -> playerName );
145137
0 commit comments