diff --git a/src/Cedar/CM.c b/src/Cedar/CM.c index 269ea44a..baa63e25 100644 --- a/src/Cedar/CM.c +++ b/src/Cedar/CM.c @@ -12249,7 +12249,8 @@ void InitCM(bool set_app_id) // Memory allocation cm = ZeroMalloc(sizeof(CM)); - + // Use Easy Mode by default if nothing else is specified. + cm->CmSettingInitialFlag = CM_SETTING_INIT_EASY; // If the command line argument is set treat it as a server name ut = GetCommandLineUniToken(); diff --git a/src/Cedar/Client.c b/src/Cedar/Client.c index 46b4f1fa..271bffdc 100644 --- a/src/Cedar/Client.c +++ b/src/Cedar/Client.c @@ -9023,6 +9023,8 @@ void CiInitConfiguration(CLIENT *c) c->Config.UseKeepConnect = false; // Don't use the connection maintenance function by default in the Client // Eraser c->Eraser = NewEraser(c->Logger, 0); + // Set EasyMode by default. + c->CmSetting->EasyMode = true; } else {